Bucket sort and radix sort are close cousins; bucket sort goes from MSD to LSD, while radix sort can go in both "directions" (LSD or MSD). How do both algorithms work, and in particular how do they differ?

link|improve this question
3  
google? wikipedia? – Armen Tsirunyan Dec 16 '10 at 14:26
1  
This sounds like it might be a homework/exam question. – FrustratedWithFormsDesigner Dec 16 '10 at 14:28
is this homework? – adamk Dec 16 '10 at 14:29
1  
@Armen: The Wikipedia articles on this subject are terrible. I could Google it, but why shouldn't Stackoverflow have the answers to these "basic" questions? Oh, and this isn't homework; I'm just an enthusiast! – Lazarus Dec 16 '10 at 14:29
feedback

3 Answers

up vote 2 down vote accepted

This is best place. where you can find your answer.

link|improve this answer
feedback

The initial pass of both Radix and Bucket sort are exactly the same... the elements are put in 'Buckets' or bins of incremental ranges, i.e 0-10, 11-20, ...and so on, depending upon the number of digits in the largest no, the radix (base, 10 for decimals) etc.

In the next pass, however, bucket sort orders up these 'buckets' and appends them into one array. However, the radix sort method appends the buckets with-out further sorting, and 're-buckets' it based on the second digit (ten's place) of the numbers. Hence, Bucket sort is more efficient for 'Dense' arrays, while Radix Sort can handle sparse (well, not exactly sparse, but spaced-out) arrays well.

link|improve this answer
feedback
link|improve this answer
Not helpful... – Lazarus Dec 16 '10 at 14:34
Sorry, I'm not here to do your homework for you, but I'm perfectly happy to point you to resources you can use to help yourself. – Paul Tomblin Dec 16 '10 at 14:37
1  
No hard feelings, but do you really think the Wikipedia articles on this subject are a helpful answer to this question? The article on radix sort is useless. Also, this isn't homework, but so what if it was? It's still a valid question. – Lazarus Dec 16 '10 at 14:54
feedback

Your Answer

 
or
required, but never shown

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