If I have a large array of integers or floats, what is a good algorithm/ implementation for sorting (in C)?

It is a bit late in the game for an edit... but I am looking for correctness and speed.

link|improve this question

78% accept rate
-1 because based on your comments you really shouldn't be asking this question. – Polaris878 Jul 23 '09 at 3:36
The faq indicates this is welcome by the company founders... though it also notes that it annoys some users. But really, I hope to learn something by doing this. For example, if somebody else has gone through the trouble of customizing/optimizing sorts for each of the C numeric types. – SetJmp Jul 23 '09 at 3:46
feedback

4 Answers

qsort() from the standard library is a good'un.

The comparison functions would be trivial for these cases:

int cmp_int(const void *a, const void *b)
{
    const int *ia = a;
    const int *ib = b;

    if (*ia < *ib)
        return -1;

    if (*ia > *ib)
        return 1;

    return 0;
}

int cmp_float(const void *a, const void *b)
{
    const float *fa = a;
    const float *fb = b;

    if (*fa < *fb)
        return -1;

    if (*fa > *fb)
        return 1;

    return 0;
}

(EDIT: The version of these based on subtracting b from a relies on signed overflow behaviour, so it's not a good idea.)

link|improve this answer
Very handy and general purpose... but not especially fast; the comparison operation is not inlined. I wonder if the java quicksort (which I think can use inlineable comparisons) might be more competitive than glibc qsort(). On the other hand, for inlined comparisons, the usort library suggested in my solution includes a general purpose introsort with inlined comparisons. It is general purpose in the sense that the comparisons are defined by macros which the #includer defines. – SetJmp Jul 23 '09 at 3:31
@ setjmp... then inline his solution. It is not hard to inline a function in C – Polaris878 Jul 23 '09 at 3:35
1  
Function pointer arguments can not get inlined in C; the compiler can not be sure what value the pointer will have at run time. At least, that is what I found last time I investigated. – SetJmp Jul 23 '09 at 3:41
In principle, there's no reason why the C compiler couldn't notice that a particular call to qsort always passes a constant function pointer, and behind the scenes create a magic inlined version of qsort(). I doubt there's any compilers that actually do this though, mostly because it's unlikely that the juice would be worth the squeeze. – caf Jul 28 '09 at 0:00
In any case, the overhead of non-inlined comparison is noted in the quicksort literature... there is a paper by Bentely and McGilroy "Engineering a Sort Function" that documents this. The USort library also contains test code to compare introsort with inlined comparisons vs GLIBC qsort (using random doubles as input): {{ N introsort (secs) GLIBC (secs) x-fold speedup 10000000 1.6881 2.837 1.68 }} I believe the advantage of the introsort comes primarily from inlining (the introsort replaced quicksort in my code only recently). – SetJmp Jul 28 '09 at 13:31
show 3 more comments
feedback
up vote 1 down vote accepted

For sorting arrays of numbers, consider a radix sort algorithm. When properly engineered, these sorts should provide better performance than GLIBC qsort().

The usort library contains type-specific implementations for all the major C numeric types.

http://bitbucket.org/ais/usort/wiki/Home

The speed advantage of radix sort over GLIBC qsort is about 2.5x for double precision floating point numbers at N=1000000 on my 64 bit intel laptop. However, as N grows the advantage should be even greater since radix sort is a linear time algorithm requiring constant number of passes through the data.

For very small N, the same code dispatches to an introsort or insertion sort.

link|improve this answer
Radix sort only works if you have a dense, ideally contiguous, list of numbers to sort. It works great if you have, say, a shuffled deck of cards; not so well if you have a scattered range of numbers with possible duplicates. – John Kugelman Jul 23 '09 at 3:21
Hi John - I don't understand your comment. The radix sort time is pretty deterministic compared to quicksort/introsort which will vary depending on statistics of the data. -A – SetJmp Jul 23 '09 at 3:28
Also, I think your examples are reversed. For shuffled deck I think it is quicksort/introsort that will be faster. – SetJmp Jul 23 '09 at 3:35
Ach... I am confusing myself now. It is for sorted deck I would expect quicksort to be faster. But radix sort should exhibit the less variance in sort time. – SetJmp Jul 23 '09 at 3:37
There's no real reason why your radix sort has to be endian-specific. For example, if you're using 65536 buckets, then (NUMBER & 65535) will always give you the least-significant 16 bits of NUMBER, no matter what the endianness of the hardware. Endianness only comes into it when you start looking at the underlying representation by type-punning pointers. – caf Jul 23 '09 at 4:04
show 2 more comments
feedback

It's never a bad idea to use qsort... unless you know something about the numbers.

You've tagged with radix sort. How much memory are you prepared to invest? Are the numbers inside a specific range? Do they have properties that makes radix sorting feasible?

Unless you want to use a lot of memory, qsort is a great option.

link|improve this answer
1  
I have found that as long as the size of the array is big enough, radix sort will soundly beat qsort. For those small cases, dispatching to comparison-based sorting (with static comparisons) ensures uniform perform gains against qsort. This is the strategy of the usort implementation. As you suggest... there is memory usage: double the original array size. However, with 64 bit machines with enough virtual RAM, this will not be a problem. – SetJmp Jul 23 '09 at 3:22
A backtrack... for highly repetitive or presorted data... a comparison-based sorting data may be the better choice. – SetJmp Jul 23 '09 at 3:34
How do they perform respectively when the array is close to L2 cache size? – caf Jul 23 '09 at 3:43
It depends on the size of the type being sorted. For signed 8 byte integes, the difference is is the 2.5-3x range. – SetJmp Jul 23 '09 at 14:18
feedback

Given a huge amount of RAM we're getting nowadays, the following set sort is possible: mark the bit in a huge RAM bit array for each number you have, then read them off back by scanning the RAM. Lots of hardware-specific optimizations can be applied for the mark and scan phases.

link|improve this answer
The usort library uses a bucket sort for sorting single byte (signed and unsighed). This is similar to this idea. Effectively, sorting bytes can be done at a speed similar to one half of memory bandwidth. – SetJmp Jul 27 '09 at 14:02
feedback

Your Answer

 
or
required, but never shown

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