Talk:Sorting algorithms/Radix sort

From Rosetta Code
Revision as of 12:09, 31 October 2012 by rosettacode>Zimmerma

Negatives

Beware negative number handling! See Wiki's python demo. dingowolf 13:25, 19 January 2011 (UTC)

An interesting problem; the easiest way to handle it seems to me to be to double the number of bins and put negative values in the first half and positive in the second. Or at least it produces correct results when I implemented it in the Tcl solution. (I suspect that the original algorithm simply didn't implement them, or sorted by printed digit instead of logical digit.) –Donal Fellows 13:22, 19 January 2011 (UTC)
The easiest way to handle negative numbers might be to find the minimum value in the list, subtract it from every item in the unsorted list and add it to every item in the sorted list. This approach is modular and can wrap any "non-negative integers only" implementation, and work well in a variety of circumstances. That said the "double the bins" approach might have an efficiency advantage when the the absolute value of the maximum equals the absolute value of the minimum. --Rdm 16:13, 19 January 2011 (UTC)
It was a smaller change to the code I already had working for the positive case. :-) –Donal Fellows 16:42, 19 January 2011 (UTC)
Yuppers, the negative integers were a small annoyance, all right (concerning the REXX example). -- Gerard Schildberger 22:03, 11 June 2012 (UTC)

C code

in the C code for radix sort, it seems to me that the condition ll < to after the "while (1)" loop is always fulfilled, and can thus be removed. Indeed in the "while (1)" loop we always have ll <= rr, thus since rr decreases ll cannot exceed the initial value of rr, which is to - 1. User:Paul Zimmermann 13:09, 30 October 2012