vote up 1 vote down star
1

I'm looking for a simple, easy to understand algorithm to alphabetically sort an array of characters in C.

flag

8 Answers

vote up 5 vote down check

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 (man qsort 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 Wikipedia.

link|flag
Thanks for your comment Ben! – Nano Taboada Sep 23 '08 at 18:29
vote up 2 vote down

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, "");

link|flag
vote up 1 vote down

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.

link|flag
vote up 2 vote down

Use the qsort method:

#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;
}
link|flag
That sorts an array of strings, he asked to sort an array of characters. – davr Sep 23 '08 at 18:11
oops yes. thanks for noticing that. – Rasmus Faber Sep 23 '08 at 18:36
vote up -1 vote down

Sounds like a homework assignment to me. Try reading wikipedia ...

link|flag
Sounds like offensive to me. Try being more educated. – Nano Taboada Sep 23 '08 at 18:31
vote up 1 vote down

Just try Bubble Sort that's the easiest sorting algorithm.

link|flag
Not as slow as [Bogosort](en.wikipedia.org/wiki/Bogosort) – Rodrigo Queiro Sep 23 '08 at 18:16
Never claim an algorithm is the "slowest" for a particular task. One can always write a slower one. :) – Herms Sep 23 '08 at 18:20
Heh indeed, I'll remove the 'slowest'. ;) – unexist Sep 23 '08 at 19:29
IMHO, insertion sort is easier then bubble sort. – quinmars Sep 27 '08 at 12:54
vote up 0 vote down

Easy? Do a bubble sort.

This is java and int rather than char, but you can easily adapt it...

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);
    }
link|flag
surely if you want simple you might as well go for insertion sort or selection sort, rather than bubble sort? – Ben Sep 23 '08 at 18:05
Thanks but I can't use Java, I should implement the solution in plain C. – Nano Taboada Sep 23 '08 at 18:30
vote up 1 vote down

First result from Google

link|flag
Buddy I already know how to use the Google, but I definitely preffer to rely on the expertise and reliability of the stackoverflow community. – Nano Taboada Sep 23 '08 at 18:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.