01: /**
02:    This program tests the heap sort algorithm.
03: */
04: public class InsertionSortTester
05: {  
06:    public static void main(String[] args)
07:    {  
08:       int[] a = ArrayUtil.randomIntArray(20, 100);
09:       ArrayUtil.print(a);
10:       InsertionSorter sorter = new InsertionSorter(a);
11:       sorter.sort();
12:       ArrayUtil.print(a);
13:    }
14: }
15: