shellSort&&insertSort

* @author hai * 内部排序 * 1,insert * 2,shell * 3, */public class SortInMemory { public static void main(String[] args) { // TODO Auto-generated method stub int []num={1,2,3,5,6,8,9,11,13,19,200,1,2,3,5,9}; insert_Sort sort=new insert_Sort(); sort.sort(num); Syst...
浏览66687次