forked from krahets/hello-algo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
219 lines (212 loc) · 8.06 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
# Project information
site_name: Hello 算法
site_url: https://www.hello-algo.com/
site_author: Krahets
site_description: 动画图解、一键运行的数据结构与算法教程
docs_dir: build
# Repository
repo_name: krahets/hello-algo
repo_url: https://github.com/krahets/hello-algo
edit_uri: https://github.com/krahets/hello-algo/tree/main/docs/
# Copyright
copyright: Copyright © 2023 Krahets
# Configuration
theme:
name: material
custom_dir: build/overrides
language: zh
features:
# - announce.dismiss
- content.action.edit
# - content.action.view
- content.code.annotate
- content.code.copy
- content.tabs.link
- content.tooltips
# - header.autohide
# - navigation.expand
- navigation.indexes
# - navigation.instant
# - navigation.prune
- navigation.sections
# - navigation.tabs
# - navigation.tabs.sticky
- navigation.top
- navigation.footer
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
# - toc.integrate
palette:
- scheme: default
primary: white
# accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- scheme: slate
primary: grey
# accent: indigo
toggle:
icon: material/weather-night
name: Switch to light mode
font:
text: Noto Sans SC
code: Fira Code
favicon: assets/images/favicon.png
logo: assets/images/logo.png
icon:
logo: logo
repo: fontawesome/brands/github
edit: material/file-edit-outline
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/krahets
- icon: fontawesome/brands/twitter
link: https://twitter.com/krahets
- icon: fontawesome/solid/code
link: https://leetcode.cn/u/jyd/
generator: false
# Plugins
plugins:
- search
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
# - pymdownx.emoji:
# emoji_index: !!python/name:materialx.emoji.twemoji
# emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.keys
# - pymdownx.magiclink:
# repo_url_shorthand: true
# user: squidfunk
# repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra_css:
- stylesheets/extra.css
# Page tree
nav:
- 0. 写在前面:
- chapter_preface/index.md
- 0.1. 关于本书: chapter_preface/about_the_book.md
- 0.2. 如何使用本书: chapter_preface/suggestions.md
- 0.3. 小结: chapter_preface/summary.md
- 1. 引言:
- chapter_introduction/index.md
- 1.1. 算法无处不在: chapter_introduction/algorithms_are_everywhere.md
- 1.2. 算法是什么: chapter_introduction/what_is_dsa.md
- 1.3. 小结: chapter_introduction/summary.md
- 2. 复杂度分析:
- chapter_computational_complexity/index.md
- 2.1. 算法效率评估: chapter_computational_complexity/performance_evaluation.md
- 2.2. 时间复杂度: chapter_computational_complexity/time_complexity.md
- 2.3. 空间复杂度: chapter_computational_complexity/space_complexity.md
- 2.4. 小结: chapter_computational_complexity/summary.md
- 3. 数据结构简介:
- chapter_data_structure/index.md
- 3.1. 数据结构分类: chapter_data_structure/classification_of_data_structure.md
- 3.2. 基本数据类型: chapter_data_structure/basic_data_types.md
- 3.3. 数字编码 *: chapter_data_structure/number_encoding.md
- 3.4. 字符编码 *: chapter_data_structure/character_encoding.md
- 3.5. 小结: chapter_data_structure/summary.md
- 4. 数组与链表:
- chapter_array_and_linkedlist/index.md
- 4.1. 数组: chapter_array_and_linkedlist/array.md
- 4.2. 链表: chapter_array_and_linkedlist/linked_list.md
- 4.3. 列表: chapter_array_and_linkedlist/list.md
- 4.4. 小结: chapter_array_and_linkedlist/summary.md
- 5. 栈与队列:
- chapter_stack_and_queue/index.md
- 5.1. 栈: chapter_stack_and_queue/stack.md
- 5.2. 队列: chapter_stack_and_queue/queue.md
- 5.3. 双向队列: chapter_stack_and_queue/deque.md
- 5.4. 小结: chapter_stack_and_queue/summary.md
- 6. 散列表:
- chapter_hashing/index.md
- 6.1. 哈希表(New): chapter_hashing/hash_map.md
- 6.2. 哈希冲突(New): chapter_hashing/hash_collision.md
- 6.3. 哈希算法(New): chapter_hashing/hash_algorithm.md
- 6.4. 小结: chapter_hashing/summary.md
- 7. 树:
- chapter_tree/index.md
- 7.1. 二叉树: chapter_tree/binary_tree.md
- 7.2. 二叉树遍历: chapter_tree/binary_tree_traversal.md
- 7.3. 二叉树数组表示: chapter_tree/array_representation_of_tree.md
- 7.4. 二叉搜索树: chapter_tree/binary_search_tree.md
- 7.5. AVL 树 *: chapter_tree/avl_tree.md
- 7.6. 小结: chapter_tree/summary.md
- 8. 堆:
- chapter_heap/index.md
- 8.1. 堆: chapter_heap/heap.md
- 8.2. 建堆操作: chapter_heap/build_heap.md
- 8.3. Top-K 问题(New): chapter_heap/top_k.md
- 8.4. 小结: chapter_heap/summary.md
- 9. 图:
- chapter_graph/index.md
- 9.1. 图: chapter_graph/graph.md
- 9.2. 图基础操作: chapter_graph/graph_operations.md
- 9.3. 图的遍历: chapter_graph/graph_traversal.md
- 9.4. 小结: chapter_graph/summary.md
- 10. 搜索:
- chapter_searching/index.md
- 10.1. 二分查找: chapter_searching/binary_search.md
- 10.2. 二分查找边界: chapter_searching/binary_search_edge.md
- 10.3. 哈希优化策略: chapter_searching/replace_linear_by_hashing.md
- 10.4. 重识搜索算法: chapter_searching/searching_algorithm_revisited.md
- 10.5. 小结: chapter_searching/summary.md
- 11. 排序:
- chapter_sorting/index.md
- 11.1. 排序算法: chapter_sorting/sorting_algorithm.md
- 11.2. 选择排序: chapter_sorting/selection_sort.md
- 11.3. 冒泡排序: chapter_sorting/bubble_sort.md
- 11.4. 插入排序: chapter_sorting/insertion_sort.md
- 11.5. 快速排序: chapter_sorting/quick_sort.md
- 11.6. 归并排序: chapter_sorting/merge_sort.md
- 11.7. 堆排序: chapter_sorting/heap_sort.md
- 11.8. 桶排序: chapter_sorting/bucket_sort.md
- 11.9. 计数排序: chapter_sorting/counting_sort.md
- 11.10. 基数排序: chapter_sorting/radix_sort.md
- 11.11. 小结: chapter_sorting/summary.md
- 12. 回溯:
- chapter_backtracking/index.md
- 12.1. 回溯算法: chapter_backtracking/backtracking_algorithm.md
- 12.2. 全排列问题: chapter_backtracking/permutations_problem.md
- 12.3. 子集和问题(New): chapter_backtracking/subset_sum_problem.md
- 12.4. N 皇后问题: chapter_backtracking/n_queens_problem.md
- 12.5. 小结: chapter_backtracking/summary.md
- 13. 附录:
- 13.1. 编程环境安装: chapter_appendix/installation.md
- 13.2. 一起参与创作: chapter_appendix/contribution.md
- 参考文献:
- chapter_reference/index.md