/** * Created by wushuang on 2014/11/19. */ public class SortTest { @Test public void mainTest() { int[] arr = new int[]{1, 8, 3, 2, 5, 6, 100, 23, 30, 12, 90, 3265, 0}; //insertSort(arr); // selectionSort(arr); // popSort(arr); quickSort(arr, 1, arr