What would be the simplest way to alpha sort an array of chars in C? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T12:23:26Zhttp://stackoverflow.com/feeds/question/122649http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/122649/what-would-be-the-simplest-way-to-alpha-sort-an-array-of-chars-in-c1What would be the simplest way to alpha sort an array of chars in C?Nano Taboada2008-09-23T18:01:57Z2008-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#1226691Answer by Hank Gay for What would be the simplest way to alpha sort an array of chars in C?Hank Gay2008-09-23T18:04:26Z2008-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#1226710Answer by dacracot for What would be the simplest way to alpha sort an array of chars in C?dacracot2008-09-23T18:04:36Z2008-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>=0; )
{
for (int j = 0; j<i; j++)
{
if (a[j] > 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#1226745Answer by Ben Collins for What would be the simplest way to alpha sort an array of chars in C?Ben Collins2008-09-23T18:05:12Z2008-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#1226761Answer by unexist for What would be the simplest way to alpha sort an array of chars in C?unexist2008-09-23T18:05:21Z2008-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-1Answer by DGM for What would be the simplest way to alpha sort an array of chars in C?DGM2008-09-23T18:05:21Z2008-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#1226972Answer by Rasmus Faber for What would be the simplest way to alpha sort an array of chars in C?Rasmus Faber2008-09-23T18:08:23Z2008-09-23T18:35:54Z<p>Use the qsort method:</p>
<pre><code>#include <stdlib.h>
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#1227001Answer by Ben for What would be the simplest way to alpha sort an array of chars in C?Ben2008-09-23T18:08:40Z2008-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#1227712Answer by quinmars for What would be the simplest way to alpha sort an array of chars in C?quinmars2008-09-23T18:20:51Z2008-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>