熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> 數據結構 >> 正文

Java語言實現插入排序

2022-06-13   來源: 數據結構 

插入排序
package orgrututilalgorithmsupport;
import orgrututilalgorithmSortUtil;
/**
* @version
*/
public class InsertSort implements SortUtilSort{
/* (nonJavadoc)
* @see orgrututilalgorithmSortUtilSort#sort(int[])
*/
public void sort(int[] data) {
int temp;
for(int i=;i<datalength;i++){
for(int j=i;(j>)&&(data[j]<data[j]);j&#;){
SortUtilswap(datajj);
}
}
}
}


From:http://tw.wingwit.com/Article/program/sjjg/201405/30739.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.