Why quicksort(or introsort), or any comparison-based sorting algorithm is more common than radix-sort? Especially for sorting numbers.

Radix-sort is not comparison based, hence may be faster than O(n*logn). In fact, it is O(k*n), where k is the number of bits used to represent each item. And the memory overhead is not critical, since you may choose the number of buckets to use, and required memory may be less than mergesort's requirements.

Does it have to do with caching? Or maybe accessing random bytes of integers in the array?

link|improve this question

80% accept rate
feedback

3 Answers

up vote 3 down vote accepted

Two arguments come to my mind:

  1. Quicksort/Introsort is more flexible:

    Quicksort and Introsort work well with all kinds of data. All you need for sorting is the possibility to compare items. This is trivial with numbers but you can sort other data as well.

    Radix sort on the other hand just sorts things by their binary representation. It never compares items against each other.

  2. Radix sort needs more memory.

    All radix sort implementations that I've seen use a secondary buffer to store partial sorting results. This increases the memory requirements of the sorting algorithm. That may not be a problem if you only sort a couple of kilobytes, but if you go into the gigabyte range it makes a huge difference.

    If I remember right a in place radix-sort algorithm exist on paper though.

link|improve this answer
The second argument is half-wrong. It is true that the radix sort needs more memory, but the memory required depends on the number of bits you use on each pass(number of buckets). Hence, the memory required may well be less than the requirements of mergesort, for example. – Daniyar Aug 22 '10 at 7:47
First argument is true, but I'm more interested by the fact that the default sorting algorithms for numbers are implemented using quicksort. Especially the implementations in libraries. And the fact that radix sort never compares items against each other is a good thing, since otherwise it's complexity would be limited O(n*logn). – Daniyar Aug 22 '10 at 7:52
It's possible to do a stable two-way in-place partitioning operation in lgN time with constant space. One could thus do an in-place radix sort in constant space with bNlgN time, where 'b' is the number of bits of radix. – supercat May 4 at 15:38
feedback

One obvious answer is that you can sort arbitrary types using quicksort (ie anything that's comparable), while you are restricted to numbers only with radix. And IMO quicksort is a lot more intuitive.

link|improve this answer
3  
IMO Bubble Sort is more intuitive than Quicksort. – Justin Ardini Aug 21 '10 at 22:32
@Justin Indeed, but it's a heck slower. – NullUserException Aug 21 '10 at 22:33
True, but I'm more interested by the fact that the default sorting algorithms for numbers are implemented using quicksort. Especially the implementations in libraries, since the intuitivity is not of high importance, if the implementation of the sort() function is under the hood. – Daniyar Aug 22 '10 at 7:44
feedback

Radix sort is slower for (most) real world use cases.

One reason is the complexity of the algorithm:

If items are unique, k >= log(n). Even with duplicate items, the set of problems where k < log(n) is small.

Another is the implementation:

The additional memory requirement (which in it self is a disadvantage), affects cache performance negatively.

I think it is safe to say that many libraries, like the standard library, use Quicksort because it performs better in the majority of cases. I don't think that "difficult implementation" or "less intuitive" are major factors.

link|improve this answer
2  
Actually, if you read the last paragraph of the Efficiency section, you'll see that the given complexity is incorrect. – Daniyar Aug 22 '10 at 7:40
-1 for citing a source that is quite clearly of questionable quality. – stakx Aug 22 '10 at 8:21
@Daniyar You added a valid theoretical example in the first section you added to wikipedia. However, if you need efficient solutions for non-general datasets, you probably wont find it in most libraries. Bucket sort would be more efficient than radix sort in this example. The second example is even more theoretical and produces something that is only partially sorted. Quicksort is common because it is more efficient in (most) real world use cases. – Plow Aug 22 '10 at 20:33
1  
@Plow I'm sorry, I'm confused. Which example? What section? I didn't add anything to wikipedia. – Daniyar Aug 22 '10 at 20:39
@stakx I found the article to be relevant. What makes you think otherwise? – Plow Aug 22 '10 at 20:39
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

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