Update README.MD

This commit is contained in:
hao14293
2018-11-19 14:30:28 +08:00
committed by GitHub
parent 594ab93b73
commit 1d491e94b2

View File

@@ -1,12 +1,12 @@
## 排序
* 插入排序
### 插入排序
> [直接插入排序](#straight_insertSort)<br>
>[折半插入排序](#binary_insertSort)<br>
> [折半插入排序](#binary_insertSort)<br>
> [希尔排序](#shellSort)<br>
* 交换排序
### 交换排序
> [冒泡排序](#bubbleSort)<br>
> [快速排序](#quickSort)<br>
* 选择排序
### 选择排序
> [简单选择排序](#simple_selectSort)<br>
> [堆排序](#heapSort)<br>
---