Skip to content

Commit 2d28ac4

Browse files
committed
update readme
1 parent 6dda558 commit 2d28ac4

File tree

5 files changed

+25
-14
lines changed

5 files changed

+25
-14
lines changed

README.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![来刷题了](https://img.fuiboom.com/img/title.png)
44

5-
算法模板,最科学的刷题方式,最快速的刷题路径,一个月从入门到 offer,你值得拥有~
5+
算法模板,最科学的刷题方式,最快速的刷题路径,一个月从入门到 offer,你值得拥有 🐶~
66

77
算法模板顾名思义就是刷题的套路模板,掌握了刷题模板之后,刷题也变得好玩起来了~
88

@@ -16,28 +16,28 @@
1616

1717
### 入门篇 🐶
1818

19-
- [go 语言入门](introduction/golang.md)
20-
- [算法快速入门](introduction/quickstart.md)
19+
- [go 语言入门](https://github.com/greyireland/algorithm-pattern/blob/master/introduction/golang.md)
20+
- [算法快速入门](https://github.com/greyireland/algorithm-pattern/blob/master/introduction/quickstart.md)
2121

2222
### 数据结构篇 🐰
2323

24-
- [二叉树](data_structure/binary_tree.md)
25-
- [链表](data_structure/linked_list.md)
26-
- [栈和队列](data_structure/stack_queue.md)
27-
- [二进制](data_structure/binary_op.md)
24+
- [二叉树](https://github.com/greyireland/algorithm-pattern/blob/master/data_structure/binary_tree.md)
25+
- [链表](https://github.com/greyireland/algorithm-pattern/blob/master/data_structure/linked_list.md)
26+
- [栈和队列](https://github.com/greyireland/algorithm-pattern/blob/master/data_structure/stack_queue.md)
27+
- [二进制](https://github.com/greyireland/algorithm-pattern/blob/master/data_structure/binary_op.md)
2828

2929
### 基础算法篇 🐮
3030

31-
- [二分搜索](basic_algorithm/binary_search.md)
32-
- [排序算法](basic_algorithm/sort.md)
33-
- [动态规划](basic_algorithm/dp.md)
31+
- [二分搜索](https://github.com/greyireland/algorithm-pattern/blob/master/basic_algorithm/binary_search.md)
32+
- [排序算法](https://github.com/greyireland/algorithm-pattern/blob/master/basic_algorithm/sort.md)
33+
- [动态规划](https://github.com/greyireland/algorithm-pattern/blob/master/basic_algorithm/dp.md)
3434

3535
### 算法思维 🦁
3636

37-
- [递归思维](advanced_algorithm/recursion.md)
38-
- [滑动窗口思想](advanced_algorithm/slide_window.md)
39-
- [二叉搜索树](advanced_algorithm/binary_search_tree.md)
40-
- [回溯法](advanced_algorithm/backtrack.md)
37+
- [递归思维](https://github.com/greyireland/algorithm-pattern/blob/master/advanced_algorithm/recursion.md)
38+
- [滑动窗口思想](https://github.com/greyireland/algorithm-pattern/blob/master/advanced_algorithm/slide_window.md)
39+
- [二叉搜索树](https://github.com/greyireland/algorithm-pattern/blob/master/advanced_algorithm/binary_search_tree.md)
40+
- [回溯法](https://github.com/greyireland/algorithm-pattern/blob/master/advanced_algorithm/backtrack.md)
4141

4242
## 心得体会
4343

TODO.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# 计划
2+
3+
## v1
4+
5+
- [ ] 完善文档细节
6+
- [ ] 工程实现用到的算法解析
7+
- [ ] 周赛计划
8+
- [ ] 面试体系计划

practice_algorithm/bplus.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# b+ tree (MySQL 索引实现)

practice_algorithm/data_index.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# 数据索引(kafka 稀疏索引)

practice_algorithm/skiplist.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# skiplist(Redis Zset 实现)

0 commit comments

Comments
 (0)