hello-algo/docs/chapter_sorting/bubble_sort.md

179 lines
4.5 KiB
Markdown
Raw Normal View History

# 冒泡排序
2022-11-22 17:47:26 +08:00
「冒泡排序 Bubble Sort」是一种最基础的排序算法非常适合作为第一个学习的排序算法。顾名思义「冒泡」是该算法的核心操作。
!!! question "为什么叫“冒泡”"
2022-11-22 17:47:26 +08:00
在水中,越大的泡泡浮力越大,所以最大的泡泡会最先浮到水面。
「冒泡」操作则是在模拟上述过程,具体做法为:从数组最左端开始向右遍历,依次对比相邻元素大小,若 **左元素 > 右元素** 则将它俩交换,最终可将最大元素移动至数组最右端。
完成此次冒泡操作后,**数组最大元素已在正确位置,接下来只需排序剩余 $n - 1$ 个元素**。
2023-02-22 00:57:43 +08:00
=== "<1>"
2023-02-26 19:22:46 +08:00
![冒泡操作步骤](bubble_sort.assets/bubble_operation_step1.png)
2022-11-22 17:47:26 +08:00
2023-02-22 00:57:43 +08:00
=== "<2>"
2022-11-22 17:47:26 +08:00
![bubble_operation_step2](bubble_sort.assets/bubble_operation_step2.png)
2023-02-22 00:57:43 +08:00
=== "<3>"
2022-11-22 17:47:26 +08:00
![bubble_operation_step3](bubble_sort.assets/bubble_operation_step3.png)
2023-02-22 00:57:43 +08:00
=== "<4>"
2022-11-22 17:47:26 +08:00
![bubble_operation_step4](bubble_sort.assets/bubble_operation_step4.png)
2023-02-22 00:57:43 +08:00
=== "<5>"
2022-11-22 17:47:26 +08:00
![bubble_operation_step5](bubble_sort.assets/bubble_operation_step5.png)
2023-02-22 00:57:43 +08:00
=== "<6>"
2022-11-22 17:47:26 +08:00
![bubble_operation_step6](bubble_sort.assets/bubble_operation_step6.png)
2023-02-22 00:57:43 +08:00
=== "<7>"
2022-11-22 17:47:26 +08:00
![bubble_operation_step7](bubble_sort.assets/bubble_operation_step7.png)
## 算法流程
2022-11-22 17:47:26 +08:00
2022-11-23 03:56:25 +08:00
1. 设数组长度为 $n$ ,完成第一轮「冒泡」后,数组最大元素已在正确位置,接下来只需排序剩余 $n - 1$ 个元素。
2. 同理,对剩余 $n - 1$ 个元素执行「冒泡」,可将第二大元素交换至正确位置,因而待排序元素只剩 $n - 2$ 个。
3. 以此类推…… **循环 $n - 1$ 轮「冒泡」,即可完成整个数组的排序**
2022-11-22 17:47:26 +08:00
![冒泡排序流程](bubble_sort.assets/bubble_sort_overview.png)
2022-11-23 15:50:59 +08:00
2022-11-22 17:47:26 +08:00
=== "Java"
```java title="bubble_sort.java"
[class]{bubble_sort}-[func]{bubbleSort}
2022-11-22 17:47:26 +08:00
```
2022-12-01 18:28:57 +08:00
=== "C++"
```cpp title="bubble_sort.cpp"
2023-02-08 04:17:26 +08:00
[class]{}-[func]{bubbleSort}
```
2022-11-22 17:47:26 +08:00
=== "Python"
```python title="bubble_sort.py"
[class]{}-[func]{bubble_sort}
```
2022-12-03 01:31:29 +08:00
=== "Go"
```go title="bubble_sort.go"
[class]{}-[func]{bubbleSort}
2022-12-03 01:31:29 +08:00
```
=== "JavaScript"
2023-02-08 04:27:55 +08:00
```javascript title="bubble_sort.js"
2023-02-08 19:45:06 +08:00
[class]{}-[func]{bubbleSort}
2022-12-03 01:31:29 +08:00
```
=== "TypeScript"
```typescript title="bubble_sort.ts"
2023-02-08 19:45:06 +08:00
[class]{}-[func]{bubbleSort}
2022-12-03 01:31:29 +08:00
```
=== "C"
```c title="bubble_sort.c"
[class]{}-[func]{bubbleSort}
2022-12-03 01:31:29 +08:00
```
=== "C#"
```csharp title="bubble_sort.cs"
[class]{bubble_sort}-[func]{bubbleSort}
2022-12-03 01:31:29 +08:00
```
2023-01-08 19:41:05 +08:00
=== "Swift"
```swift title="bubble_sort.swift"
2023-02-08 20:30:05 +08:00
[class]{}-[func]{bubbleSort}
2023-01-08 19:41:05 +08:00
```
2023-02-01 22:03:04 +08:00
=== "Zig"
```zig title="bubble_sort.zig"
[class]{}-[func]{bubbleSort}
2023-02-01 22:03:04 +08:00
```
## 算法特性
2022-11-22 17:47:26 +08:00
2023-01-09 22:39:30 +08:00
**时间复杂度 $O(n^2)$** :各轮「冒泡」遍历的数组长度为 $n - 1$ , $n - 2$ , $\cdots$ , $2$ , $1$ 次,求和为 $\frac{(n - 1) n}{2}$ ,因此使用 $O(n^2)$ 时间。
2022-11-22 17:47:26 +08:00
2023-01-09 22:39:30 +08:00
**空间复杂度 $O(1)$** :指针 $i$ , $j$ 使用常数大小的额外空间。
2022-11-22 17:47:26 +08:00
2023-01-09 22:39:30 +08:00
**原地排序**:指针变量仅使用常数大小额外空间。
2022-11-22 17:47:26 +08:00
2023-01-09 22:39:30 +08:00
**稳定排序**:不交换相等元素。
2022-11-22 17:47:26 +08:00
**自适应排序**:引入 `flag` 优化后(见下文),最佳时间复杂度为 $O(N)$ 。
2022-11-22 17:47:26 +08:00
## 效率优化
2022-11-22 17:47:26 +08:00
我们发现,若在某轮「冒泡」中未执行任何交换操作,则说明数组已经完成排序,可直接返回结果。考虑可以增加一个标志位 `flag` 来监听该情况,若出现则直接返回。
优化后,冒泡排序的最差和平均时间复杂度仍为 $O(n^2)$ ;而在输入数组 **已排序** 时,达到 **最佳时间复杂度** $O(n)$ 。
=== "Java"
```java title="bubble_sort.java"
[class]{bubble_sort}-[func]{bubbleSortWithFlag}
2022-11-22 17:47:26 +08:00
```
=== "C++"
```cpp title="bubble_sort.cpp"
2023-02-08 04:17:26 +08:00
[class]{}-[func]{bubbleSortWithFlag}
```
=== "Python"
```python title="bubble_sort.py"
[class]{}-[func]{bubble_sort_with_flag}
```
2022-12-03 01:31:29 +08:00
=== "Go"
```go title="bubble_sort.go"
[class]{}-[func]{bubbleSortWithFlag}
2022-12-03 01:31:29 +08:00
```
=== "JavaScript"
2023-02-08 04:27:55 +08:00
```javascript title="bubble_sort.js"
2023-02-08 19:45:06 +08:00
[class]{}-[func]{bubbleSortWithFlag}
2022-12-03 01:31:29 +08:00
```
=== "TypeScript"
```typescript title="bubble_sort.ts"
2023-02-08 19:45:06 +08:00
[class]{}-[func]{bubbleSortWithFlag}
2022-12-03 01:31:29 +08:00
```
=== "C"
```c title="bubble_sort.c"
[class]{}-[func]{bubbleSortWithFlag}
2022-12-03 01:31:29 +08:00
```
=== "C#"
```csharp title="bubble_sort.cs"
[class]{bubble_sort}-[func]{bubbleSortWithFlag}
2022-12-03 01:31:29 +08:00
```
2023-01-08 19:41:05 +08:00
=== "Swift"
```swift title="bubble_sort.swift"
2023-02-08 20:30:05 +08:00
[class]{}-[func]{bubbleSortWithFlag}
2023-01-08 19:41:05 +08:00
```
2023-02-01 22:03:04 +08:00
=== "Zig"
```zig title="bubble_sort.zig"
[class]{}-[func]{bubbleSortWithFlag}
2023-02-01 22:03:04 +08:00
```