What would be the simplest way to alpha sort an array of chars in C? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T12:23:26Z http://stackoverflow.com/feeds/question/122649 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/122649/what-would-be-the-simplest-way-to-alpha-sort-an-array-of-chars-in-c 1 What would be the simplest way to alpha sort an array of chars in C? Nano Taboada 2008-09-23T18:01:57Z 2008-09-23T19:30:17Z <p>I'm looking for a simple, easy to understand algorithm to alphabetically sort an array of characters in C.</p> http://stackoverflow.com/questions/122649/what-would-be-the-simplest-way-to-alpha-sort-an-array-of-chars-in-c/122669#122669 1 Answer by Hank Gay for What would be the simplest way to alpha sort an array of chars in C? Hank Gay 2008-09-23T18:04:26Z 2008-09-23T18:04:26Z <p><a href="http://www.phanderson.com/C/str_sort.html" rel="nofollow">First result from Google</a></p> http://stackoverflow.com/questions/122649/what-would-be-the-simplest-way-to-alpha-sort-an-array-of-chars-in-c/122671#122671 0 Answer by dacracot for What would be the simplest way to alpha sort an array of chars in C? dacracot 2008-09-23T18:04:36Z 2008-09-23T18:04:36Z <p>Easy? Do a bubble sort.</p> <p>This is java and int rather than char, but you can easily adapt it...</p> <pre><code>int[] bubble(int a[]) { for (int i = a.length; --i&gt;=0; ) { for (int j = 0; j&lt;i; j++) { if (a[j] &gt; a[j+1]) { int T = a[j]; a[j] = a[j+1]; a[j+1] = T; } } } return(a); } </code></pre> http://stackoverflow.com/questions/122649/what-would-be-the-simplest-way-to-alpha-sort-an-array-of-chars-in-c/122674#122674 5 Answer by Ben Collins for What would be the simplest way to alpha sort an array of chars in C? Ben Collins 2008-09-23T18:05:12Z 2008-09-23T18:05:12Z <p>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 (<code>man qsort</code> on a linux-like system). You might have to convert upper-case letters to lowercase to simplify things, but that's trivial. If you want to understand the quicksort algorithm (that's the one you should learn, because you'll actually use it), see <a href="http://en.wikipedia.org/wiki/Quicksort" rel="nofollow">Wikipedia</a>.</p> http://stackoverflow.com/questions/122649/what-would-be-the-simplest-way-to-alpha-sort-an-array-of-chars-in-c/122676#122676 1 Answer by unexist for What would be the simplest way to alpha sort an array of chars in C? unexist 2008-09-23T18:05:21Z 2008-09-23T19:30:17Z <p>Just try <a href="http://en.wikibooks.org/wiki/Data_Structures/bubble_sort" rel="nofollow">Bubble Sort</a> that's the easiest sorting algorithm.</p> http://stackoverflow.com/questions/122649/what-would-be-the-simplest-way-to-alpha-sort-an-array-of-chars-in-c/122677#122677 -1 Answer by DGM for What would be the simplest way to alpha sort an array of chars in C? DGM 2008-09-23T18:05:21Z 2008-09-23T18:05:21Z <p>Sounds like a homework assignment to me. Try reading <a href="http://en.wikipedia.org/wiki/Sort_algorithms" rel="nofollow">wikipedia</a> ...</p> http://stackoverflow.com/questions/122649/what-would-be-the-simplest-way-to-alpha-sort-an-array-of-chars-in-c/122697#122697 2 Answer by Rasmus Faber for What would be the simplest way to alpha sort an array of chars in C? Rasmus Faber 2008-09-23T18:08:23Z 2008-09-23T18:35:54Z <p>Use the qsort method:</p> <pre><code>#include &lt;stdlib.h&gt; int char_compare (const void * a, const void * b) { return *(const char *)a - *(const char *)b; } int main(){ const char char_array[] = { 'c', 'a', 'b' }; qsort (char_array, 3, sizeof(char), char_compare); return 0; } </code></pre> http://stackoverflow.com/questions/122649/what-would-be-the-simplest-way-to-alpha-sort-an-array-of-chars-in-c/122700#122700 1 Answer by Ben for What would be the simplest way to alpha sort an array of chars in C? Ben 2008-09-23T18:08:40Z 2008-09-23T18:08:40Z <p>I wonder if you are really looking for an algorithm or just a way to solve the problem? If the latter, then use <a href="http://www.manpagez.com/man/3/qsort/" rel="nofollow">C's qsort</a>. </p> <p>If you want an algorith, go for <a href="http://en.wikipedia.org/wiki/Insertion_sort" rel="nofollow">Insertion sort</a> or <a href="http://en.wikipedia.org/wiki/Selection_sort" rel="nofollow">Selection sort</a>, as they're very simple to understand.</p> http://stackoverflow.com/questions/122649/what-would-be-the-simplest-way-to-alpha-sort-an-array-of-chars-in-c/122771#122771 2 Answer by quinmars for What would be the simplest way to alpha sort an array of chars in C? quinmars 2008-09-23T18:20:51Z 2008-09-23T18:20:51Z <p>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.</p> <p>setlocale(LC_COLLATE, "");</p>