博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
插入排序(黄柳淞)
阅读量:6715 次
发布时间:2019-06-25

本文共 493 字,大约阅读时间需要 1 分钟。

hot3.png

import java.util.Arrays;

public class Demo {

 public static void main(String[] args) {
  int a[] = { 9, 8, 7, 6, 5, 4, 3, 2, 1, 0 };
  int[] arr = new int[] { 9, 8, 7, 6, 5, 4, 3, 2, 1, 0 };
  insertSort(arr);
 }
 public static void insertSort(int[] a) {
  int j = 0, i, temp;
  for (i = 1; i < a.length; i++) {
   j = i - 1;
   temp = a[i];
   while (j >= 0 && temp < a[j]) {
    a[j + 1] = a[j];
    j--;
   }
   a[j + 1] =temp ;
   System.out.println(Arrays.toString(a));
  }

 }

 
}

转载于:https://my.oschina.net/liusonghuang/blog/791423

你可能感兴趣的文章
FZU操作系统课程实验 实验一
查看>>
【转】Android Activity和Intent机制学习笔记----不错
查看>>
Eclipse背景颜色修改
查看>>
linux下安装oracle11g 64位最简客户端(转)
查看>>
搭建XMPP协议,实现自主推送消息到手机
查看>>
基于FPGA的图像处理(二)--System Generator入门
查看>>
DIV+CSS 入门
查看>>
UVa 213 Message Decoding(World Finals1991,串)
查看>>
Everything search syntax
查看>>
BZOJ 3211 弗洛拉前往国家 树阵+并检查集合
查看>>
Mac OS X通过结合80port
查看>>
Windows下一个SlikSVN使用
查看>>
C#中隐式操作CMD命令行窗口
查看>>
拍卖倒计时
查看>>
Android使用surface直接显示yuv数据(三)
查看>>
vb.net它SqlHelper制备及应用
查看>>
HttpServletRequest接口实例化的使用
查看>>
iOS 网易新闻用到的框架
查看>>
301重定向方法大全及SEO中网址规范化,看着不错先收下
查看>>
Windows Live Writer 在线安装失败的解决方法。
查看>>