插入排序

Posted XuGuobao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了插入排序相关的知识,希望对你有一定的参考价值。

插入排序是通过比较和插入来实现排序的;

排序思想:

a)首先对数组的前两个数据进行从小到大的排序;

b)接着将第三个数据与排好顺序的两个数据比较,将第三个数据插入合适的位置;

c)然后,将第4个数据插入到已经排好顺序的前3个数据中;

d)不断重复上述过程

 1 package insert_sort;
 2 
 3 public class InsertSort {
 4     /*
 5      * 插入排序
 6      * */
 7     public static void main(String[] args) {
 8         int[] a = {0,5,2,6,9,3,4,8,1};
 9         int i,j,t,h;
10         for(i=1;i<a.length;i++){
11             t = a[i];        
12             j = i-1;
13             while(j>=0 && t<a[j]){    //此处的t不能 用a[i]代替,因为i=j+1
14                 a[j+1] = a[j];
15                 j--;
16             }
17             a[j+1] = t;
18         }
19         
20         for(int x=0;x<a.length;x++)
21             System.out.print(a[x]+ "、");    
22     }
23 }

 

以上是关于插入排序的主要内容,如果未能解决你的问题,请参考以下文章

KDoc:插入代码片段

代码片段使用复杂的 JavaScript 在 UIWebView 中插入 HTML?

将代码片段插入数据库并在 textarea 中以相同方式显示

关于在各浏览器中插入音频文件的html代码片段

初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段

初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段