码迷,mamicode.com
首页 > 编程语言 > 详细

java排序

时间:2020-01-08 12:32:37      阅读:81      评论:0      收藏:0      [点我收藏+]

标签: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));
}

java排序

标签:i++   插入排序   bre   str   temp   插入   tostring   else   print   

原文地址:https://www.cnblogs.com/sxshe/p/12165820.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!