10000 README · windsonxp/Algorithms@a26f576 · GitHub
[go: up one dir, main page]

Skip to content

Commit a26f576

Browse files
committed
README
1 parent f31ac56 commit a26f576

File tree

4 files changed

+18
-154
lines changed

4 files changed

+18
-154
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 46 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 0 additions & 70 deletions
This file was deleted.

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@ Xcode 9.0+
1313

1414
### 常用算法
1515

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] 快速排序
3434
* [ ] A\*寻路算法
3535

3636
### 其他算法

0 commit comments

Comments
 (0)
0