applications
Class ChainWithBinSort

java.lang.Object
  |
  +--dataStructures.Chain
        |
        +--applications.ChainWithBinSort

public class ChainWithBinSort
extends Chain


Fields inherited from class dataStructures.Chain
firstNode, size
 
Constructor Summary
ChainWithBinSort()
           
 
Method Summary
static void binSort(int range)
          sort the chain c using the bin sort method
static void main(java.lang.String[] args)
          test program
 
Methods inherited from class dataStructures.Chain
add, get, indexOf, isEmpty, iterator, remove, size, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ChainWithBinSort

public ChainWithBinSort()
Method Detail

binSort

public static void binSort(int range)
sort the chain c using the bin sort method

main

public static void main(java.lang.String[] args)
test program