jds
Interface SortAlgorithm

All Known Implementing Classes:
AVLTree, Heap, SkewHeap, SkipList, SortedVector, BubbleSort, InsertionSort, MergeSort, Partition, ShellSort

public abstract interface SortAlgorithm

SortAlgorithm - rearrange an indexed collection into asending order; for use with book Classic Data Structures in Java by Timothy A Budd, published by Addison-Wesley, 2001.

See Also:
Indexed

Method Summary
 void sort(Indexed data)
          rearrange collection into asending order
 

Method Detail

sort

public void sort(Indexed data)
rearrange collection into asending order
Parameters:
data - the values to be ordered