forked from krahets/hello-algo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
177 lines (170 loc) · 5.41 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
# Project information
site_name: Hello 算法
site_url: https://www.hello-algo.com/
site_author: Krahets
site_description: 一本动画图解、能运行、可提问的数据结构与算法入门书
# Repository
repo_name: krahets/hello-algo
repo_url: https://github.com/krahets/hello-algo
edit_uri: https://github.com/krahets/hello-algo/tree/master/docs/
# Copyright
copyright: Copyright © 2022 Krahets
# Configuration
theme:
name: material
custom_dir: docs/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:
- 写在前面:
- 关于本书: chapter_preface/about_the_book.md
- 如何使用本书: chapter_preface/suggestions.md
- 编程环境安装: chapter_preface/installation.md
- 一起参与创作: chapter_preface/contribution.md
- 引言:
- 算法无处不在: chapter_introduction/algorithms_are_everywhere.md
- 算法是什么: chapter_introduction/what_is_dsa.md
- 计算复杂度:
- 算法效率评估: chapter_computational_complexity/performance_evaluation.md
- 时间复杂度: chapter_computational_complexity/time_complexity.md
- 空间复杂度: chapter_computational_complexity/space_complexity.md
- 权衡时间与空间: chapter_computational_complexity/space_time_tradeoff.md
- 小结: chapter_computational_complexity/summary.md
- 数据结构简介:
- 数据与内存: chapter_data_structure/data_and_memory.md
- 数据结构分类: chapter_data_structure/classification_of_data_strcuture.md
- 小结: chapter_data_structure/summary.md
- 数组与链表:
- 数组(Array): chapter_array_and_linkedlist/array.md
- 链表(LinkedList): chapter_array_and_linkedlist/linked_list.md
- 列表(List): chapter_array_and_linkedlist/list.md
- 小结: chapter_array_and_linkedlist/summary.md
- 栈与队列:
- 栈(Stack): chapter_stack_and_queue/stack.md
- 队列(Queue): chapter_stack_and_queue/queue.md
- 双向队列(Deque): chapter_stack_and_queue/deque.md
- 小结: chapter_stack_and_queue/summary.md
- 散列表:
- 哈希表(HashMap): chapter_hashing/hash_map.md
- 哈希冲突处理: chapter_hashing/hash_collision.md
- 小结: chapter_hashing/summary.md
- 二叉树:
- 二叉树(Binary Tree): chapter_tree/binary_tree.md
- 二叉树遍历: chapter_tree/binary_tree_traversal.md
- 二叉搜索树: chapter_tree/binary_search_tree.md
- AVL 树 *: chapter_tree/avl_tree.md
- 小结: chapter_tree/summary.md
- 查找算法:
- 线性查找: chapter_searching/linear_search.md
- 二分查找: chapter_searching/binary_search.md
- 哈希查找: chapter_searching/hashing_search.md
- 小结: chapter_searching/summary.md
- 排序算法:
- 排序简介: chapter_sorting/intro_to_sort.md
- 冒泡排序: chapter_sorting/bubble_sort.md
- 插入排序: chapter_sorting/insertion_sort.md
- 快速排序: chapter_sorting/quick_sort.md
- 归并排序: chapter_sorting/merge_sort.md
- 小结: chapter_sorting/summary.md
- 参考文献:
- chapter_reference/index.md