@@ -13,24 +13,24 @@ Xcode 9.0+
13
13
14
14
### 常用算法
15
15
16
- * [x] [ 二叉树和前中后序遍历] ( https://github.com/ookcode/Algorithms/blob/master/CommonAlgorithms/BinaryTree/main.cpp )
17
- * [x] [ 线索二叉树] ( https://github.com/ookcode/Algorithms/blob/master/CommonAlgorithms/BinaryTree/main.cpp )
18
- * [x] [ 哈夫曼树与哈夫曼编码] ( https://github.com/ookcode/Algorithms/blob/master/CommonAlgorithms/HuffmanTree/main.cpp )
19
- * [x] [ 图的深度优先遍历(DFS)和广度优先遍历(BFS) ] ( https://github.com/ookcode/Algorithms/blob/master/CommonAlgorithms/Graph/main.cpp )
20
- * [x] [ 最小生成树(MST):Prim算法] ( https://github.com/ookcode/Algorithms/blob/master/CommonAlgorithms/MST/main.cpp )
21
- * [x] [ 最小生成树(MST):Kruskal算法] ( https://github.com/ookcode/Algorithms/blob/master/CommonAlgorithms/MST/main.cpp )
22
- * [x] [ 最短路径:Dijkstra算法] ( https://github.com/ookcode/Algorithms/blob/master/CommonAlgorithms/ShortPath/main.cpp )
23
- * [x] [ 最短路径:Floyd算法] ( https://github.com/ookcode/Algorithms/blob/master/CommonAlgorithms/ShortPath/main.cpp )
24
- * [x] [ 二叉排序树/平衡二叉树(AVL) ] ( https://github.com/ookcode/Algorithms/blob/master/CommonAlgorithms/AVL/main.cpp )
25
- * [x] [ 动态规划(DP) - 01背包问题] ( https://github.com/ookcode/Algorithms/blob/master/CommonAlgorithms/DP/main.cpp )
26
- * [x] [ 贪心算法 - 钱币找零问题] ( https://github.com/ookcode/Algorithms/blob/master/CommonAlgorithms/Greedy/main.cpp )
27
- * [x] [ 冒泡排序] ( https://github.com/ookcode/Algorithms/blob/master/CommonAlgorithms/Sort/main.cpp )
28
- * [x] [ 简单选择排序] ( https://github.com/ookcode/Algorithms/blob/master/CommonAlgorithms/Sort/main.cpp )
29
- * [x] [ 直接插入排序] ( https://github.com/ookcode/Algorithms/blob/master/CommonAlgorithms/Sort/main.cpp )
30
- * [x] [ 希尔排序] ( https://github.com/ookcode/Algorithms/blob/master/CommonAlgorithms/Sort/main.cpp )
31
- * [x] [ 堆排序] ( https://github.com/ookcode/Algorithms/blob/master/CommonAlgorithms/Sort/main.cpp )
32
- * [x] [ 归并排序] ( https://github.com/ookcode/Algorithms/blob/master/CommonAlgorithms/Sort/main.cpp )
33
- * [x] [ 快速排序] ( https://github.com/ookcode/Algorithms/blob/master/CommonAlgorithms/Sort/main.cpp )
16
+ * [x] 二叉树和前中后序遍历
17
+ * [x] 线索二叉树
18
+ * [x] 哈夫曼树与哈夫曼编码
19
+ * [x] 图的深度优先遍历(DFS)和广度优先遍历(BFS)
20
+ * [x] 最小生成树(MST):Prim算法
21
+ * [x] 最小生成树(MST):Kruskal算法
22
+ * [x] 最短路径:Dijkstra算法
23
+ * [x] 最短路径:Floyd算法
24
+ * [x] 二叉排序树/平衡二叉树(AVL)
25
+ * [x] 动态规划(DP) - 01背包问题
26
+ * [x] 贪心算法 - 钱币找零问题
27
+ * [x] 冒泡排序
28
+ * [x] 简单选择排序
29
+ * [x] 直接插入排序
30
+ * [x] 希尔排序
31
+ * [x] 堆排序
32
+ * [x] 归并排序
33
+ * [x] 快速排序
34
34
* [ ] A\* 寻路算法
35
35
36
36
### 其他算法
0 commit comments