24
Pseudocode
procedure RadixSortReals (Array[1..N])
RadixSort Significands in Array as unsigned ints
RadixSort biased exponents in Array as u-ints
Sweep thru Array,
put negative #’s separate from positive #’s.
Flip order of negative #’s, & put them before
the positive #’s.
Done.