<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
# Bubble Sort - 冒泡排序
--------
#### 問題
用冒泡排序對長度為$$ n $$的無序序列$$ s $$進行排序。
#### 解法
本問題對無序序列$$ s $$升序排序,排序后$$ s $$是從小到大的。
將長度為$$ n $$的序列$$ s $$分為$$ left $$和$$ right $$兩個部分,其中$$ left $$是無序部分,范圍為$$ s[0,k] $$,$$ right $$是有序部分,范圍為$$ s[k+1,n-1] $$,其中$$ 0 \lt k \le n $$。初始時$$ left $$范圍為$$ s[0,n-1] $$,$$ right $$為空。
$$ left $$從左邊第一個元素$$ s[i] $$(初始時$$ i = 0 $$)開始向右遍歷,依次對$$ s[i] $$和$$ s[i+1] $$進行比較,若$$ s[i] \gt s[i+1] $$則交換兩個元素,直到$$ i = k $$為止,完成一次遍歷操作。每次遍歷會將$$ left $$中的最大元素移動到$$ s[0,k] $$的最右邊,之后就可以將$$ left $$的范圍縮小為$$ s[0,k-1] $$,$$ right $$的范圍擴大為$$ s[k,n-1] $$。
例如對于下圖中的數組$$ s $$,$$ left $$為$$ s[0,5] $$,$$ right $$為$$ s[6,n-1] $$。從$$ i = 0 $$開始向右遍歷,依次比較$$ s[i] $$和$$ s[i+1] $$,若$$ s[i] \gt s[i+1] $$則交換兩個元素,直到$$ i = 5 $$。



$$
\cdots \cdots
$$

然后將$$ left $$中的最大值$$ s[5] = 57 $$合并到$$ right $$部分中,再進行新一輪的遍歷交換操作。

重復上面的遍歷交換操作,從$$ i = 0 $$開始向右遍歷。這樣直到$$ left $$部分為空,$$ right $$部分即為已序數組,算法結束。對于長度為$$ n $$的序列$$ s $$,每一輪將$$ left $$中的最大值移動到$$ right $$,時間復雜度為$$ O(n) $$,總共需要$$ n $$輪,該算法的時間復雜度為$$ O(n^2) $$。
--------
#### 源碼
[BubbleSort.h](https://github.com/linrongbin16/Way-to-Algorithm/blob/master/src/Sort/BubbleSort.h)
[BubbleSort.cpp](https://github.com/linrongbin16/Way-to-Algorithm/blob/master/src/Sort/BubbleSort.cpp)
#### 測試
[BubbleSortTest.cpp](https://github.com/linrongbin16/Way-to-Algorithm/blob/master/src/Sort/BubbleSortTest.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 尼姆博弈