Skip to content

Commit c078595

Browse files
committed
导图
1 parent 4369540 commit c078595

File tree

5 files changed

+264
-332
lines changed

5 files changed

+264
-332
lines changed

‎README.md‎

Lines changed: 5 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -22,80 +22,11 @@ collect some good articles about data structure and algorithm.
2222

2323
读者可以根据自己的需要阅读,希望能够对您有所帮助,有何不足之处请多指正!
2424

25-
访问[我的电子书《从零开始学算法》](https://muyids.github.io/simple-algorithm/),获取更好的阅读体验
26-
27-
## ♨️ 基础算法
28-
29-
* [《从零开始学算法》](https://muyids.github.io/simple-algorithm/)
30-
* [力扣题解](./questions.md)
31-
* [二分](https://muyids.github.io/simple-algorithm/chapter/二分.html)
32-
* [排序算法及应用](https://muyids.github.io/simple-algorithm/chapter/sort/排序.html)
33-
* [冒泡排序](https://muyids.github.io/simple-algorithm/chapter/sort/冒泡.html)
34-
* [快速排序](https://muyids.github.io/simple-algorithm/chapter/sort/快排.html)
35-
* [归并排序](https://muyids.github.io/simple-algorithm/chapter/sort/归并.html)
36-
* [桶排序](https://muyids.github.io/simple-algorithm/chapter/sort/桶排序.html)
37-
* [字符串处理](https://muyids.github.io/simple-algorithm/chapter/字符串处理.html)
38-
* [DFS和回溯](https://muyids.github.io/simple-algorithm/chapter/DFS和回溯.html)
39-
* [单调栈](https://muyids.github.io/simple-algorithm/chapter/单调栈.html)
40-
* [双指针](https://muyids.github.io/simple-algorithm/chapter/双指针.html)
41-
* [滑动窗口](https://muyids.github.io/simple-algorithm/chapter/滑动窗口.html)
42-
* [前缀和](https://muyids.github.io/simple-algorithm/chapter/前缀和.html)
43-
* [差分数组](https://muyids.github.io/simple-algorithm/chapter/差分数组.html)
44-
* [链表](https://muyids.github.io/simple-algorithm/chapter/链表.html)
45-
* [二叉树](https://muyids.github.io/simple-algorithm/chapter/binary-tree/二叉树.html)
46-
* [二叉树��遍历](https://muyids.github.io/simple-algorithm/chapter/binary-tree/二叉树的遍历.html)
47-
* [深度优先--前序遍历](https://muyids.github.io/simple-algorithm/chapter/binary-tree/深度优先--前序遍历.html)
48-
* [深度优先--中序遍历](https://muyids.github.io/simple-algorithm/chapter/binary-tree/深度优先--中序遍历.html)
49-
* [深度优先--后序遍历](https://muyids.github.io/simple-algorithm/chapter/binary-tree/深度优先--后序遍历.html)
50-
* [广度优先遍历](https://muyids.github.io/simple-algorithm/chapter/binary-tree/广度优先遍历.html)
51-
* [二叉搜索树](https://muyids.github.io/simple-algorithm/chapter/binary-tree/二叉搜索树.html)
52-
* [二叉树相关题目](https://muyids.github.io/simple-algorithm/chapter/binary-tree/练习题目.html)
53-
* [字典树](https://muyids.github.io/simple-algorithm/chapter/字典树.html)
54-
* [贪心](https://muyids.github.io/simple-algorithm/chapter/greedy/贪心.html)
55-
* [区间问题](https://muyids.github.io/simple-algorithm/chapter/greedy/区间问题.html)
56-
* [子集问题](https://muyids.github.io/simple-algorithm/chapter/greedy/子集问题.html)
57-
* [动态规划](https://muyids.github.io/simple-algorithm/chapter/dp/动态规划.html)
58-
* [线性dp](https://muyids.github.io/simple-algorithm/chapter/dp/线性dp.md)
59-
* [区间dp](https://muyids.github.io/simple-algorithm/chapter/dp/区间dp.md)
60-
* [背包dp](https://muyids.github.io/simple-algorithm/chapter/dp/背包dp.md)
61-
* [树形dp](https://muyids.github.io/simple-algorithm/chapter/dp/树形dp.md)
62-
* [状态压缩dp](https://muyids.github.io/simple-algorithm/chapter/dp/状态压缩dp.md)
63-
* [数位dp](https://muyids.github.io/simple-algorithm/chapter/dp/数位dp.md)
64-
* [计数型dp](https://muyids.github.io/simple-algorithm/chapter/dp/计数型dp.md)
65-
* [递推型dp](https://muyids.github.io/simple-algorithm/chapter/dp/递推型dp.md)
66-
* [概率型dp](https://muyids.github.io/simple-algorithm/chapter/dp/概率型dp.md)
67-
* [博弈型dp](https://muyids.github.io/simple-algorithm/chapter/dp/博弈型dp.md)
68-
* [记忆化搜索](https://muyids.github.io/simple-algorithm/chapter/dp/记忆化搜索.md)
69-
* [并查集](https://muyids.github.io/simple-algorithm/chapter/并查集.html)
70-
* [位运算](https://muyids.github.io/simple-algorithm/chapter/位运算.html)
71-
* [图论](https://muyids.github.io/simple-algorithm/chapter/graph/图论.html)
72-
* [树与图的遍历](https://muyids.github.io/simple-algorithm/chapter/graph/树与图的遍历.html)
73-
* [拓扑排序](https://muyids.github.io/simple-algorithm/chapter/graph/拓扑排序.html)
74-
* [最短路](https://muyids.github.io/simple-algorithm/chapter/graph/最短路.html)
75-
* [朴素的Dijkstra算法](https://muyids.github.io/simple-algorithm/chapter/graph/朴素的Dijkstra算法.html)
76-
* [堆优化版的Dijkstra算法](https://muyids.github.io/simple-algorithm/chapter/graph/堆优化版的Dijkstra算法.html)
77-
* [Bellman-Ford算法](https://muyids.github.io/simple-algorithm/chapter/graph/Bellman-Ford算法.html)
78-
* [spfa算法](https://muyids.github.io/simple-algorithm/chapter/graph/spfa算法.html)
79-
* [Floyd算法](https://muyids.github.io/simple-algorithm/chapter/graph/Floyd算法.html)
80-
* [二分图](https://muyids.github.io/simple-algorithm/chapter/graph/二分图.html)
81-
* [最小生成树](https://muyids.github.io/simple-algorithm/chapter/graph/最小生成树.html)
82-
* [Prim算法](https://muyids.github.io/simple-algorithm/chapter/graph/Prim算法.html)
83-
* [Kruskal算法](https://muyids.github.io/simple-algorithm/chapter/graph/Kruskal算法.html)
84-
* [数学](https://muyids.github.io/simple-algorithm/chapter/math/数学.html)
85-
* [数论](https://muyids.github.io/simple-algorithm/chapter/math/初等数论.html)
86-
* [容斥原理](./chapter/math/容斥原理.md)
87-
* [抽屉原理](./chapter/math/抽屉原理.md)
88-
* [约瑟夫环](./chapter/math/约瑟夫环.md)
89-
* [卡特兰数](./chapter/math/卡特兰数.md)
90-
* [概率论--三门问题](./chapter/math/三门问题.md)
91-
* [几何问题](https://muyids.github.io/simple-algorithm/chapter/math/计算几何.html)
92-
93-
## 进阶算法
94-
95-
* [离散化](https://muyids.github.io/simple-algorithm/chapter/离散化.html)
96-
* [树状数组](https://muyids.github.io/simple-algorithm/chapter/树状数组.html)
97-
* [线段树](https://muyids.github.io/simple-algorithm/chapter/线段树.html)
98-
* [ST表](https://muyids.github.io/simple-algorithm/chapter/ST表.html)
25+
访问[我的电子书《从零开始学算法》](http://alg.muyids.com/),获取更好的阅读体验
26+
27+
## ♨️ 导图
28+
29+
![simple-algorithm](https://muyids.oss-cn-beijing.aliyuncs.com/simple-algorithm.png)
9930

10031
## 🙉 说明
10132

0 commit comments

Comments
 (0)