/* * InsertionSort.java * * Created on April 13, 2005, 11:35 AM */ package sorttimer; /** * * @author levenick */ public class InsertionSort extends AbstractSort { public void sort(IntList theList) { this.theList = theList; for (int here=0; here