As the title says, is radix sort the only non-comparison sorting algorithm? My guess is yes.
feedback
|
|
No - there's counting sort and bucket sort also, among others. Check the Wikipedia article for more info. | |||
|
feedback
|
|
Any set can be sorted by not using comparisons. The process is
For example an 32 bit, M, integer sort could be carried out as:
Radix sort uses digits and have 2 variants, (MSB to LSB) and (LSB to MSB). Counting sort uses only the first step Bucket sort is usually mentioned when referring to a mix of counting and a comparison sorts. Interestingly, for quite a few use-cases, comparison sorts comes up short. | |||
|
feedback
|