Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Radix Sort, Sorting a float data

Is radix sort capable of sorting float data for example 0.5, 0.9, 1.02, etc.?

like image 629
BGV Avatar asked Jan 09 '11 18:01

BGV


1 Answers

Yes, it is possible. It requires an additional pass to correctly handle negative values. The articles by Pierre Terdiman and Michael Herf discuss in detail how to implement it. In short, you convert the float to unsigned integer, sort them, and then convert them back to float (this is required, otherwise the negatives values would be incorrectly sorted after the positive ones).

Their method has the advantage that you do not introduce any error into your data (provided that your processor stores the float in accordance to the IEEE 754 standard).

like image 186
Sylvain Defresne Avatar answered Sep 20 '22 00:09

Sylvain Defresne