jds.sort
Class RadixSort

java.lang.Object
  |
  +--jds.sort.RadixSort

public class RadixSort
extends java.lang.Object

RadixSort - implementation of the radix sort algorithm; for use with book Classic Data Structures in Java by Timothy A Budd, published by Addison-Wesley, 2001.

See Also:
Indexed

Constructor Summary
RadixSort()
           
 
Method Summary
 void radixSort(int[] data)
          place elements in data into order
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RadixSort

public RadixSort()
Method Detail

radixSort

public void radixSort(int[] data)
place elements in data into order
Parameters:
data - array of positive integer values