插入排序

Posted 闲杂人等

tags:

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

工作原理:
  通过构建有序序列,对于未排序数据,在已排序序列中从后向前扫描,找到相应位置并插入。
时间复杂度:
  最差时间复杂度 | O(n^2)

代码:

package com.core.test.sort;

public class InsertSort {
    public static void main(String[] args) {
        int[] a = {5, 1, 7, 3, 2, 8, 3, 4, 6};
        insertSort(a);
    }

    private static void insertSort(int[] arr) {
        /*
        * for循环相当于选中第一个元素作为已排序数据
        * 从第二个元素开始往已排序数据中插 i的值就是要插入已排序数据的值的坐标
        * */
        for (int i = 1; i < arr.length; i++) {
            if (arr[i] < arr[i - 1]) {
                int temp = arr[i];
                int j = i - 1;
                /*
                * 坐标i之前的数据是已经排好序的 找到一个不大于要插入的值的值 插入到他的后面即可
                * 在还没有找到之前 数据从前往后依次赋值 相当于给要插入的值挪位置了
                * */
                while (j >= 0 && arr[j] > temp) {
                    arr[j + 1] = arr[j];
                    j--;
                }
                arr[j + 1] = temp;
            }
        }
        for (int a : arr) {
            System.out.print(a + " ");
        }
    }
}

 

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

KDoc:插入代码片段

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

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

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

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

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