auto commit

This commit is contained in:
CyC2018
2018-03-03 22:29:45 +08:00
parent aeaa7740c0
commit 01ad228af2
7 changed files with 172 additions and 172 deletions

View File

@ -16,7 +16,7 @@
* [2.1 归并方法](#21-归并方法)
* [2.2 自顶向下归并排序](#22-自顶向下归并排序)
* [2.3 自底向上归并排序](#23-自底向上归并排序)
* [3.快速排序](#3快速排序)
* [3. 快速排序](#3-快速排序)
* [3.1 基本算法](#31-基本算法)
* [3.2 切分](#32-切分)
* [3.3 性能分析](#33-性能分析)
@ -371,7 +371,7 @@ public static void busort(Comparable[] a) {
}
```
## 3.快速排序
## 3. 快速排序
### 3.1 基本算法