|
18 | 18 |
|
19 | 19 | ###入门篇 🐶
|
20 | 20 |
|
21 |
| --[go 语言入门](https://github.com/greyireland/algorithm-pattern/blob/master/introduction/golang.md) |
22 |
| --[算法快速入门](https://github.com/greyireland/algorithm-pattern/blob/master/introduction/quickstart.md) |
| 21 | +-[go 语言入门](./introduction/golang.md) |
| 22 | +-[算法快速入门](./introduction/quickstart.md) |
23 | 23 |
|
24 | 24 | ###数据结构篇 🐰
|
25 | 25 |
|
26 |
| --[二叉树](https://github.com/greyireland/algorithm-pattern/blob/master/data_structure/binary_tree.md) |
27 |
| --[链表](https://github.com/greyireland/algorithm-pattern/blob/master/data_structure/linked_list.md) |
28 |
| --[栈和队列](https://github.com/greyireland/algorithm-pattern/blob/master/data_structure/stack_queue.md) |
29 |
| --[二进制](https://github.com/greyireland/algorithm-pattern/blob/master/data_structure/binary_op.md) |
| 26 | +-[二叉树](./data_structure/binary_tree.md) |
| 27 | +-[链表](./data_structure/linked_list.md) |
| 28 | +-[栈和队列](./data_structure/stack_queue.md) |
| 29 | +-[二进制](./data_structure/binary_op.md) |
30 | 30 |
|
31 | 31 | ###基础算法篇 🐮
|
32 | 32 |
|
33 |
| --[二分搜索](https://github.com/greyireland/algorithm-pattern/blob/master/basic_algorithm/binary_search.md) |
34 |
| --[排序算法](https://github.com/greyireland/algorithm-pattern/blob/master/basic_algorithm/sort.md) |
35 |
| --[动态规划](https://github.com/greyireland/algorithm-pattern/blob/master/basic_algorithm/dp.md) |
| 33 | +-[二分搜索](./basic_algorithm/binary_search.md) |
| 34 | +-[排序算法](./basic_algorithm/sort.md) |
| 35 | +-[动态规划](./basic_algorithm/dp.md) |
36 | 36 |
|
37 | 37 | ###算法思维 🦁
|
38 | 38 |
|
39 |
| --[递归思维](https://github.com/greyireland/algorithm-pattern/blob/master/advanced_algorithm/recursion.md) |
40 |
| --[滑动窗口思想](https://github.com/greyireland/algorithm-pattern/blob/master/advanced_algorithm/slide_window.md) |
41 |
| --[二叉搜索树](https://github.com/greyireland/algorithm-pattern/blob/master/advanced_algorithm/binary_search_tree.md) |
42 |
| --[回溯法](https://github.com/greyireland/algorithm-pattern/blob/master/advanced_algorithm/backtrack.md) |
| 39 | +-[递归思维](./advanced_algorithm/recursion.md) |
| 40 | +-[滑动窗口思想](./advanced_algorithm/slide_window.md) |
| 41 | +-[二叉搜索树](./advanced_algorithm/binary_search_tree.md) |
| 42 | +-[回溯法](./advanced_algorithm/backtrack.md) |
43 | 43 |
|
44 | 44 | ##心得体会
|
45 | 45 |
|
|