修改一些描述

This commit is contained in:
xiaolei565
2021-08-24 20:05:33 +08:00
parent 35c3e827c4
commit fbcba65fe4
2 changed files with 2 additions and 1 deletions

View File

@@ -548,7 +548,7 @@ int TopSort(AGraph *G)
}
```
- - - -
> 排序算法
> 排序算法 (了解所有排序算法稳定性、复杂度---很重要)
```c
//代码主要是掌握插入排序,快速排序(分治思想,考的特别多),选择排序,还得了解一下动态规划思想
void InsertSort(int R[],int n)
@@ -569,6 +569,7 @@ void InsertSort(int R[],int n)
//下面是重点,快速排序,不敲了,打印后自己写
//!!!!!重点,快排一定自己敲一遍