最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
jsp 插入排序算法实例代码
时间:2022-06-29 00:43:49 编辑:袖梨 来源:一聚教程网
public class CharuSort {
public static void main(String[] args){int[] sort={4,6,3,9,5};
Sort(sort);
for(int i=0;i
System.out.print(sort[i]+" ");
}
public static void Sort(int[] sort){
int i; //为扫描次数
int j; //定为比较得元素
for(i=1;i
int temp; //temp用来暂存数据
temp=sort[i];
j=i-1;
while(j>=0&&temp
sort[j+1]=sort[j]; //把所有的元素往后推一个位置
j--;
}
sort[j+1]=temp; //最小的元素放到第一个位置
}
}
}
相关文章
- 时空中的绘旅人天宇之间怎么玩 绘旅人天宇之间活动玩法介绍 12-25
- QQ2024年度报告怎么看 2024qq年度报告玩法介绍 12-25
- 归龙潮珠砂什么时候up 归龙潮红缘绮梦卡池介绍 12-25
- 王者荣耀S38赛季有什么更新 12-25
- 王者荣耀S38赛季有什么更新 王者荣耀S38赛季更新内容介绍 12-25
- 世界之外12.25有什么更新 世界之外12月25日更新内容介绍 12-25