服务器之家

服务器之家 > 正文

Java数据结构及算法实例:插入排序 Insertion Sort

时间:2019-12-24 13:04     来源/作者:junjie
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/**
 * 选择排序的思想:
 * 每次循环前,数组左边都是部分有序的序列,
 * 然后选择右边待排元素,将其值保存下来
 * 依次和左边已经排好的元素比较
 * 如果小于左边的元素,就将左边的元素右移一位
 * 直到和最左边的比较完成,或者待排元素不比左边元素小
 */
package al;
public class InsertionSort {
   
  public static void main(String[] args) {
     
    InsertionSort insertSort = new InsertionSort();
    int[] elements = { 14, 77, 21, 9, 10, 50, 43, 14 };
    // sort the array
    insertSort.sort(elements);
    // print the sorted array
    for (int i = 0; i < elements.length; i++) {
      System.out.print(elements[i]);
      System.out.print(" ");
    }
  }
   
  /**
   * @author
   * @param array 待排数组
   */
  public void sort(int[] array) {
    // min to save the minimum element for each round
    int key; // save current element
    for(int i=0; i<array.length; i++) {
      int j = i;  // current position
      key = array[j];
      // compare current element
      while(j > 0 && array[j-1] > key) {
        array[j] = array[j-1]; //shift it
        j--; 
      }
      array[j] = key;
     
    }
  }
}

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
配置IIS网站web服务器的安全策略配置解决方案
配置IIS网站web服务器的安全策略配置解决方案 2019-05-23
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
Nginx服务器究竟是怎么执行PHP项目
Nginx服务器究竟是怎么执行PHP项目 2019-05-24
返回顶部