插入排序
package org
import org
/**
* @version
*/
public class InsertSort implements SortUtil
/* (non
* @see org
*/
public void sort(int[] data) {
int temp;
for(int i=
for(int j=i;(j>
SortUtil
}
}
}
}
From:http://tw.wingwit.com/Article/program/sjjg/201405/30739.html