<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
# Insert Sort - 插入排序
--------
#### 问题
用插入排序对长度为$$ n $$的无序序列$$ s $$进行排序。
#### 解法
本问题对无序序列$$ s $$进行升序排序,排序后$$ s $$是从小到大的。
将长度为$$ n $$的序列$$ s $$分为左右两个部分$$ left $$和$$ right $$,$$ left $$是已序的,范围为$$ s[0,k] $$,$$ right $$是未序的,范围为$$ s[k+1,n-1] $$,其中$$ 0 \le k \lt n $$。对$$ right $$中最左边的元素$$ x = s[k+1] $$,在$$ left $$部分中找到一个位置$$ i $$,满足$$ s[i-1] \le x \le s[i] $$,也就是说$$ x $$可以夹在$$ s[i-1] $$和$$ s[i] $$之间。为了满足$$ left $$的有序性,将$$ left $$中$$ s[i,k] $$部分的元素向右移动一个位置到$$ s[i+1,k+1] $$,将$$ x $$放置在原$$ s[i] $$的位置即可。
例如下图中,$$ left $$部分为$$ s[0,5] $$,$$ right $$部分为$$ s[6,n-1] $$,$$ right $$最左边的首部元素$$ x = s[6] = 41 $$,在$$ left $$部分中合适的插入位置为$$ i = 3 $$($$ s[2] \le x \le s[3] $$)。
![InsertSort1.svg](../res/InsertSort1.svg)
将$$ s[3,5] $$向右移动一位到$$ s[4,6] $$,将原$$ x $$移动到$$ s[3] $$,就完成了一次插入。
![InsertSort2.svg](../res/InsertSort2.svg)
对于长度为$$ n $$的数组$$ s $$,将$$ left $$初始化为$$ s[0,0] $$,$$ right $$初始化为$$ s[1,n-1] $$。重复上面的插入操作,直到$$ right $$为空,这时$$ left $$部分即为已序的结果,算法结束。对长度为$$ n $$的序列$$ s $$,每一轮将$$ right $$中一个元素插入$$ left $$中的时间为$$ O(n) $$,总共需要$$ n $$轮操作,该算法的时间复杂度为$$ O(n^2) $$。
--------
#### 源码
[InsertSort.h](https://github.com/linrongbin16/Way-to-Algorithm/blob/master/src/Sort/InsertSort.h)
[InsertSort.cpp](https://github.com/linrongbin16/Way-to-Algorithm/blob/master/src/Sort/InsertSort.cpp)
#### 测试
[InsertSortTest.cpp](https://github.com/linrongbin16/Way-to-Algorithm/blob/master/src/Sort/InsertSortTest.cpp)
- Content 目录
- Preface 前言
- Chapter-1 Sort 第1章 排序
- InsertSort 插入排序
- BubbleSort 冒泡排序
- QuickSort 快速排序
- MergeSort 归并排序
- Chapter-2 Search 第2章 搜索
- BinarySearch 二分查找法(折半查找法)
- BruteForce 暴力枚举
- Recursion 递归
- BreadthFirstSearch 广度优先搜索
- BidirectionalBreadthSearch 双向广度搜索
- AStarSearch A*搜索
- DancingLink 舞蹈链
- Chapter-3 DataStructure 第3章 数据结构
- DisjointSet 并查集
- PrefixTree(TrieTree) 前缀树
- LeftistTree(LeftistHeap) 左偏树(左偏堆)
- SegmentTree 线段树
- FenwickTree(BinaryIndexedTree) 树状数组
- BinarySearchTree 二叉查找树
- AVLTree AVL平衡树
- RedBlackTree 红黑树
- Chapter-4 DynamicProgramming 第4章 动态规划
- Chapter-5 GraphTheory 第5章 图论
- Chapter-6 Calculation 第6章 计算
- LargeNumber 大数字
- Exponentiation 求幂运算
- Chapter-7 CombinatorialMathematics 第7章 组合数学
- FullPermutation 全排列
- UniqueFullPermutation 唯一的全排列
- Combination 组合
- DuplicableCombination (元素)可重复的组合
- Subset 子集
- UniqueSubset 唯一的子集
- Permutation 排列
- PermutationGroup 置换群
- Catalan 卡特兰数
- Chapter-8 NumberTheory 第8章 数论
- Sieve 筛选算法
- Euclid 欧几里得
- EuclidExtension 欧几里得扩展
- ModularLinearEquation 模线性方程
- ChineseRemainerTheorem 中国剩余定理
- ModularExponentiation 模幂运算
- Chapter-9 LinearAlgebra 第9章 线性代数
- Chapter-10 AnalyticGeometry 第10章 解析几何
- Chapter-11 TextMatch 第11章 文本匹配
- SimpleMatch 简单匹配
- AhoCorasickAutomata AC自动机
- KnuthMorrisPratt KMP匹配算法
- RabinKarp RabinKarp算法
- BoyerMoore BoyerMoore算法
- Chapter-12 GameTheory 第12章 博弈论
- BashGame 巴什博弈
- WythoffGame 威佐夫博弈
- NimGame 尼姆博弈