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?
|
feedback
|
|
This is best place. where you can find your 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. | |||
|
feedback
|
| |||||||||
feedback
|
@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