1 Star 0 Fork 0

20145221高其 / java-besti-is-2015-2016-2-20145221

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
InsertSortDemo.java 377 Bytes
一键复制 编辑 原始数据 按行查看 历史
20145221高其 提交于 2016-04-19 12:42 . DataStructures - Sort
package DataStructures.Sort;
/**
* Created by 其 on 2016/4/19.
*/
public class InsertSortDemo {
public static void main(String[] args) {
int[] a = {1, 54, 6, 3, 78, 34, 12, 45, 56, 100};
new InsertSort(a);
System.out.println("Insert Sort Result:");
for(int i=0; i<a.length; i++){
System.out.print(a[i]+" ");
}
}
}
Java
1
https://gitee.com/20145221/java-besti-is-2015-2016-2-20145221.git
git@gitee.com:20145221/java-besti-is-2015-2016-2-20145221.git
20145221
java-besti-is-2015-2016-2-20145221
java-besti-is-2015-2016-2-20145221
master

搜索帮助