I want to know if it is more efficient to use a Radix sort with Integer values or to convert the values to Binary and then sort them.
Can someone explain to me the pro's and con's of sorting values using a Radix sort with Binary numbers instead of just using Integers?
For example, I want to sort 5 values. (170, 2, 19, 40, 100)
Using a radix sort what would the Pro's and Con's be of using their binary representations? (010101010, 0010, 010011, 0101000, 01100100)