标签:i++ 插入排序 bre str temp 插入 tostring else print
插入排序
public void test3() {
int i,j,temp;
for(i=1;i<array.length;i++) {
temp=array[i];
for(j=i-1;j>=0;j--) {
if(temp>array[j]) {
break;
}else {
array[j+1]=array[j];
}
}
array[j+1]=temp;
}
System.out.println(Arrays.toString(array));
}
标签:i++ 插入排序 bre str temp 插入 tostring else print
原文地址:https://www.cnblogs.com/sxshe/p/12165820.html