RadixSort : Java Glossary

RadixSort
is a sorting technique that mimics the old card sorters that worked column by column sending punched cards into different bins. I first heard of the idea from the late Tom Meikle who was a novice programmer when he independently discovered it back in 1968 when we implemented it for the venerable LGP-30. He called it "DigitSort". Only many years later after teaching it to scores of people did I learn it was already well known by the name RadixSort.
book cover recommend book⇒The Art of Computer Programming
by:Donald Ervin Knuth 978-0-201-48541-7hardcover
 (born: 1938-01-10 age: 74)
publisher:Addison-Wesley
published:1998-10-15
The classic book on algorithms. Volumes 1, 2 and 3. It is a dense, authorative, academic series of books. You probably would need some university level computer science or mathematics training to tackle it. Knuth’s volumes 1, 2 and 3 are the reference works for standard algorithms. At his website he describes plans for volumes 4 and 5.
Australian flag abe books anz abe books.co.uk UK flag
German flag abe books.de amazon.co.uk UK flag
German flag amazon.de abe books.ca Canadian flag
Spanish flag iberlibro.com amazon.ca Canadian flag
Spanish flag amazon.es Chapters Indigo Canadian flag
French flag abe books.fr abe books.com American flag
French flag amazon.fr amazon.com American flag
Italian flag abe books.it Barnes & Noble American flag
Italian flag amazon.it powells.com American flag
American flag o’reilly safari sony e-books American flag
Greyed out stores probably do not have the item in stock
The radix-distribution sort (which I call here simply RadixSort) is discussed at length in Knuth’s Art of Computer Programming vol 3 #5.2.5, where he says that it was first published in 1929 in connection with tabulating machines, although it was probably known to the operators before that, and first described in the form included here in 1954. There is also a related radix-exchange sort.

Advantages

In Java, RadixSort is faster than either QuickSort or HeapSort in the benchmarks I ran. For small numbers of items, almost any sorting algorithm will work just fine. There is rarely any reason to use anything but the built intournament sort, unless the sort is too big to fit in RAM (Random Access Memory), where you need something like opt-sort.

RadixSort is stable, meaning it preserves existing order of equal keys. It works in linear time, unlike most other sorts. In other words, it does not bog down when you have large numbers of items to sort. The time per item to sort is constant. With other sorts, the time to sort per time increases with the number of items. Mathematicians would put it that most sorts run in O(n log(n)) or O(n²) time, where RadixSort runs in O(n) time.

Drawbacks

Tuning

If you want a high speed version of RadixSort for a particular application, you will have to inline the comparison delegate code since delegate.getKeyByteAt, is where it chews up all the CPU (Central Processing Unit) time.

Since all sorts can use the same Comparator interface, it is possible to experiment with various sorts to figure out which one works best for your situation.

Variants

There are other ways to implement the same basic algorithm by chaining the objects to be sorted together, but that tends to be inefficient in Java since you need separate glue objects to do the linking unless the items to be sorted themselves implement some chaining interface.

CMP homejump to top You can get the freshest copy of this page from: or possibly from your local J: drive (Java virtual drive/mindprod.com website mirror)
http://mindprod.com/jgloss/radixsort.html J:\mindprod\jgloss\radixsort.html
logofeedback Please email your feedback for publication, letters to the editor, errors, omissions, typos, formatting errors, ambiguities, unclear wording, broken/redirected link reports, suggestions to improve this page or comments to Roedy Green : feedback email If you want your message kept confidential, not considered for posting, please explicitly specify that.
mindprod.com IP:[65.110.21.43]
view BlogYour face IP:[38.107.179.210]
You are visitor number 23,155.