I'm looking for a simple, easy to understand algorithm to alphabetically sort an array of characters in C.
|
1
|
|
|
|
|
|
characters in C have numeric values that happen to be in order, so you just treat your characters like integers. the C standard library includes a 'qsort' function. Use that ( |
||
|
|
|
If the result is intended for humans, it is better to use strcoll. It is slower then strcmp or strcasecmp but it accounts for non-english characters. If you are going to use it don't forget to set your locale for LC_COLLATE, i.e. setlocale(LC_COLLATE, ""); |
||
|
|
|
|
I wonder if you are really looking for an algorithm or just a way to solve the problem? If the latter, then use C's qsort. If you want an algorith, go for Insertion sort or Selection sort, as they're very simple to understand. |
||
|
|
|
|
Use the qsort method:
|
||||
|
|
|
Sounds like a homework assignment to me. Try reading wikipedia ... |
||
|
|
|
Just try Bubble Sort that's the easiest sorting algorithm. |
||||||||
|
|
|
Easy? Do a bubble sort. This is java and int rather than char, but you can easily adapt it...
|
||||
|
|
|
|
||
|
