fix: 冒泡排序 自适排序 -> 自适应排序

This commit is contained in:
方圆 2023-01-16 17:57:28 +08:00 committed by GitHub
parent 004f570512
commit 52d5258f68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -228,7 +228,7 @@ comments: true
**稳定排序**:不交换相等元素。
**自适排序**:引入 `flag` 优化后(见下文),最佳时间复杂度为 $O(N)$ 。
**自适排序**:引入 `flag` 优化后(见下文),最佳时间复杂度为 $O(N)$ 。
## 效率优化