Skip to content

Commit fa63cf4

Browse files
committed
docs: update readme
1 parent 5582e96 commit fa63cf4

File tree

1 file changed

+18
-11
lines changed

1 file changed

+18
-11
lines changed

README.md

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
# 算法 ALGORITHM
22

3-
# 链表 list
3+
## 链表 list
44
* [SeqList](https://github.com/treeforest/algorithm/tree/master/list/SeqList): 顺序表
55
* [LinkList](https://github.com/treeforest/algorithm/tree/master/list/LinkList): 单链表
66
* [StaticLinkList](https://github.com/treeforest/algorithm/tree/master/list/StaticLinkList): 静态链表
77
* [DoubleLinkList](https://github.com/treeforest/algorithm/tree/master/list/DoubleLinkList): 双向链表
88

9-
# 栈 stack
9+
## 栈 stack
1010
* [SqStack](https://github.com/treeforest/algorithm/tree/master/stack/SqStack): 顺序栈
1111
* [LinkStack](https://github.com/treeforest/algorithm/tree/master/stack/LinkStack): 链栈
1212

13-
# 队列 queue
13+
## 队列 queue
1414
* [SqQueue](https://github.com/treeforest/algorithm/tree/master/queue/SqQueue): 循环队列
1515
* [LinkQueue](https://github.com/treeforest/algorithm/tree/master/queue/LinkQueue): 链队列
1616
* [PriorityQueue](https://github.com/treeforest/algorithm/tree/master/queue/PriorityQueue): 优先级队列(二项堆-大根堆)
1717
* [FibHeap](https://github.com/treeforest/algorithm/tree/master/queue/FibHeap): 优先级队列(斐波那契堆-小根堆)
1818

19-
# 树 tree
19+
## 树 tree
2020
* [BinaryTree](https://github.com/treeforest/algorithm/tree/master/tree/BinaryTree): 二叉树(二叉搜索树)
2121
* [RBTree](https://github.com/treeforest/algorithm/tree/master/tree/RBTree): 红黑树(实现有序集合 K-V 的存储)
2222

23-
# 图论 graph
23+
## 图论 graph
2424
* [AdjacencyMatrix](https://github.com/treeforest/algorithm/tree/master/Graph/AdjacencyMatrix): 图的邻接矩阵存储(模板实现)
2525
* [AdjacencyMatrix2](https://github.com/treeforest/algorithm/tree/master/Graph/AdjacencyMatrix2): 图的邻接矩阵存储(非模板实现)
2626
* [AdjacencyList](https://github.com/treeforest/algorithm/tree/master/Graph/AdjacencyList): 图的邻接表存储
@@ -31,11 +31,11 @@
3131
* [Floyd](https://github.com/treeforest/algorithm/tree/master/Graph/Floyd): 求各顶点之间最短路径
3232
* [TopologicalSort](https://github.com/treeforest/algorithm/tree/master/Graph/TopologicalSort): 拓扑排序
3333

34-
# 查找 search
34+
## 查找 search
3535
* [SeqSearch](https://github.com/treeforest/algorithm/tree/master/search/SeqSearch): 顺序查找
3636
* [BinarySearch](https://github.com/treeforest/algorithm/tree/master/search/BinarySearch): 折半查找
3737

38-
# 排序 sort
38+
## 排序 sort
3939
### 插入排序
4040
* [InsertSort](https://github.com/treeforest/algorithm/tree/master/sort/InsertSort): 直接插入排序
4141
* [BinaryInsertSort](https://github.com/treeforest/algorithm/tree/master/sort/BinaryInsertSort): 折半插入排序
@@ -56,16 +56,23 @@
5656
* [BucketSort](https://github.com/treeforest/algorithm/tree/master/sort/BucketSort): 桶排序
5757
* [CountSort](https://github.com/treeforest/algorithm/tree/master/sort/CountSort): 计数排序
5858

59-
# 字符串匹配 string
59+
## 字符串匹配 string
6060
* [Naive 朴素字符串匹配算法](https://github.com/treeforest/algorithm/tree/master/string/Naive)
6161
* [Rabin-Karp 字符串匹配算法](https://github.com/treeforest/algorithm/tree/master/string/Rabin-Karp)
6262
* [KMP 字符串匹配算法](https://github.com/treeforest/algorithm/tree/master/string/KMP)
6363

64-
# 其他 other
64+
## 其他 other
6565
* [DisjointSetLink](https://github.com/treeforest/algorithm/tree/master/other/DisjointSetLink): 不相交集合的链表表示
6666
* [DisjointSetForest](https://github.com/treeforest/algorithm/tree/master/other/DisjointSetForest): 不相交集合的森林表示
6767
* [DeterministicSkipList](https://github.com/treeforest/algorithm/tree/master/other/DeterministicSkipList): 确定性跳跃表
6868
* [LRU](https://github.com/treeforest/algorithm/tree/master/other/LRU): Least Recently Used(最近最少使用)算法
6969

70-
# 练习 practice
71-
* [大整数加法](https://github.com/treeforest/algorithm/tree/master/practice/%E5%A4%A7%E6%95%B4%E6%95%B0%E5%8A%A0%E6%B3%95)
70+
## 练习 practice
71+
* [大整数加法](https://github.com/treeforest/algorithm/tree/master/practice/%E5%A4%A7%E6%95%B4%E6%95%B0%E5%8A%A0%E6%B3%95)
72+
73+
***
74+
75+
## 参考资料
76+
1. 算法导论 第三版
77+
2. 数据结构 严蔚敏
78+
3. redis源码

0 commit comments

Comments
 (0)