-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
206 lines (189 loc) · 5.26 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
# Project Information
site_name: raine's Blog
site_description: by raine
site_author: raine
strict: false
site_url: https://raineblog.github.io/blog/
repo_name: raineblog/blog
repo_url: https://github.com/raineblog/blog
edit_uri: edit/main/docs/
copyright: by raineblog
# Contents
nav:
- 简介:
- index.md
- intro/format.md
- intro/usage.md
- intro/discussion.md
- intro/setting.md
- 比赛相关:
- contest/pre.md
- 基础算法:
- basic/prefix.md
- basic/xor-hashing.md
- 动态规划:
- dp/basic.md
- dp/sequence.md
- dp/interval.md
- dp/opt/mono.md
- 数据结构:
- ds/ds.md
- 并查集:
- ds/dsu/dsu1.md
- ds/dsu/dsu2.md
- ds/dsu/dsu3.md
- RMQ 问题:
- ds/rmq/rmq.md
- ds/rmq/st.md
- 树状数组:
- ds/fenwick/fenwick1.md
- 线段树:
- ds/seg/seg1.md
- ds/seg/seg2.md
- ds/seg/scanning.md
- ds/seg/seg_opt.md
- ds/seg/seg_lichao.md
- ds/seg/seg_cat.md
- 珂朵莉树:
- ds/odt/odt.md
- ds/sqrt/decomposition.md
- 离线算法:
- 莫队:
- ds/offline/mo/mo_algo.md
- ds/offline/mo/mo.md
- ds/offline/mo/mo_tree.md
- 数学:
- 线性代数:
- math/linear-algebra/vector.md
- math/linear-algebra/matrix.md
- math/linear-algebra/gauss.md
- 数论:
- math/number-theory/index.md
- math/number-theory/qpow.md
- math/number-theory/gcd.md
- math/number-theory/exgcd.md
- math/number-theory/linear-equation.md
- math/number-theory/inverse.md
- math/number-theory/prime.md
- math/number-theory/euler.md
- math/number-theory/crt.md
- math/number-theory/excrt.md
- math/number-theory/decomposition.md
- math/number-theory/bsgs.md
- 图论:
- 最短路:
- graph/shortest-path/index.md
- graph/shortest-path/sssp.md
- graph/shortest-path/apsp.md
- graph/shortest-path/other.md
- graph/shortest-path/diff.md
- 生成树:
- graph/spanning-tree/mst.md
- graph/spanning-tree/kruskal.md
- graph/tree.md
- graph/dsu-on-tree.md
- 树分治:
- graph/divide/point.md
- 最近公共祖先:
- graph/lca/index.md
- graph/lca/binary.md
- graph/lca/dfs.md
theme:
name: null
custom_dir: 'material/templates'
language: 'zh'
palette:
scheme: default
primary: white
accent: red
# scheme: preference
features:
- navigation.tabs
- navigation.instant
- navigation.tabs.sticky
- navigation.prune
- navigation.path
- search.suggest
- search.highlight
- search.share
- announce.dismiss
- content.action.edit
- content.code.copy
- content.code.select
- content.footnote.tooltips
# - header.autohide
include_search_page: false
search_index_only: true
icon:
repo: fontawesome/brands/github-alt
font:
text: 'Segoe UI'
code: 'Fira Code'
plugins:
- glightbox
- search
- minify:
minify_html: true
extra:
pagetime: 'on'
manifest: 'manifest.webmanifest'
githash: ''
# copyright: '<a href="https://creativecommons.org/licenses/by-sa/4.0/deed.zh">CC BY-SA 4.0</a> 和 <a href="https://github.com/zTrix/sata-license">SATA</a>'
extra_javascript:
- assets/javascripts/extra.js
- assets/javascripts/jquery.min.js
- assets/highlight/highlight.min.js
- assets/katex/katex.min.js
- assets/katex/contrib/mhchem.min.js
- assets/katex/contrib/auto-render.min.js
- assets/katex/contrib/copy-tex.min.js
- assets/javascripts/custom.js
extra_css:
- assets/stylesheets/extra.css
- assets/stylesheets/all.min.css
- assets/katex/katex.min.css
- assets/highlight/styles/stackoverflow-light.min.css
- assets/stylesheets/custom.css
# Extensions
markdown_extensions:
- md_in_html
- admonition
- attr_list
- def_list
- footnotes
- meta
- codehilite:
guess_lang: false
linenums: true
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.details
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- pymdownx.betterem
- pymdownx.blocks.caption
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
use_pygments: false
pygments_lang_class: true
auto_title: true
linenums: true
line_spans: __span
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.snippets:
check_paths: true
- pymdownx.progressbar
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true