final int numtests = 5; final int testsize = 100; boolean SUCCESS = true; final int MaxKeyValue = 200; // The following are dummy declarations to keep the compiler happy. // Need to implement this for real when there is a list class // available. interface List { void append(Object it); void next(); void moveToStart(); Object getValue(); } class LinkedList implements List { LinkedList() {} void append(Object it) {} void next() {} void moveToStart() {} Object getValue() { return null; } } void output(Object x) {} /* *** ODSATag: Binsort *** */ void binsort(Integer[] A) { List[] B = new LinkedList[MaxKeyValue+1]; Object item; for (int i=0; i<=MaxKeyValue; i++) B[i] = new LinkedList(); for (int i=0; i