-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmkdocs.yml
210 lines (200 loc) · 6.18 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
# Project Information
site_name: CUC ACM-Wiki
site_description: CUC ACM-Wiki用于学习算法和数据结构相关内容,发布中国传媒大学ACM集训队相关安排
site_author: CUC ACM Team
site_url: https://cuccs.github.io/acm-wiki/
strict: true
# Repository
repo_name: 'CUCCS/acm-wiki'
repo_url: 'https://github.com/CUCCS/acm-wiki'
copyright: 'Copyright © 2019 - 2021 CUC ACM Team'
# Contents
nav:
- 首页:
- 主页: index.md
- 关于本项目: intro.md
- F.A.Q: FAQ.md
- C语言基础:
- 基本语法: c-basic/grammar.md
- 逻辑结构: c-basic/structure.md
- 数组: c-basic/array.md
- 函数: c-basic/function.md
- 字符数组,string: c-basic/char.md
- Python竞赛基础: c-basic/python.md
- 基础算法:
- 时间复杂度: basic-algorithm/time.md
- 二分: basic-algorithm/binary-research.md
- 尺取: basic-algorithm/two-pointers.md
- 倍增: basic-algorithm/adding-doubling.md
- 排序: basic-algorithm/sort.md
- STL:
- STL简介: STL/introduction.md
- Vector: STL/vector.md
- Map: STL/map.md
- Set: STL/set.md
- Queue: STL/queue.md
- List: STL/list.md
- Bitset: STL/bitset.md
- 图论:
- 拓扑排序: graph/topological-sorting.md
- 最短路: graph/shortest-path.md
- 最小生成树: graph/MST.md
- LCA: graph/LCA.md
- 树直径: graph/diameter-of-tree.md
- Euler: graph/euler.md
- 连通分量概述: graph/connected-components.md
- 强联通分量: graph/strongly-connected-components.md
- 2-SAT: graph/2-SAT.md
- 差分约束: graph/difference-constraint.md
- 二分图: graph/bipartite-graph.md
- 动态规划:
- DP入门: dp/simpleDP.md
- 数位DP: dp/DigitalDP.md
- 计数DP: dp/CountingDP.md
- 搜索:
- 枚举排列和枚举子集: search/enumeration.md
- 枚举约简: search/simple-enum-reduction.md
- 栈和深度优先搜索: search/dfs.md
- 数学:
- 简单数学: math/simple-math.md
- 数论: math/number-theory.md
- 数列: math/num-sequence.md
- 组合数学: math/combinatorics.md
- 当小球遇上盒子: math/ball-in-box.md
- FFT: math/fft.md
- 数据结构:
- 数据结构简介: data-struct/intro.md
- ST算法: data-struct/ST.md
- 树状数组: data-struct/fenwick-tree.md
- 线段树: data-struct/segment-tree.md
- 树链剖分: data-struct/hld.md
- 可持久化数据结构:
- 简介: data-struct/pds-intro.md
- 可持久化线段树: data-struct/persistent-segment.md
- 莫队算法: data-struct/modui.md
- 集训安排:
- 2022秋季集训: training/2022Autumn.md
- 2022春季集训: training/2022Spring.md
- 2021秋季集训: training/2021Autumn.md
- 2021暑期集训:
- 暑期多校训练: training/2021Summer/official.md
- 牛客多校总结: training/2021Summer/nowcoder.md
- 2021春季集训: training/2021Spring.md
- 2020秋季集训: training/2020Autumn.md
- 2020暑期集训:
- 暑期多校训练: training/2020Summer/official.md
- 2020牛客多校题解/总结: training/2020Summer/nowcoder.md
- 2020春季集训: training/2020Spring.md
- 视频资源:
- 视频资源: videos/videos.md
- 题库:
- 使用指南: problems/How-to-use.md
- 递归:
- 题目: problems/recursion.md
- 题解: problems/recursion-solution.md
- 差分:
- 题目: problems/difference.md
- 题解: problems/difference-solution.md
- 动态规划:
- 题目: problems/dp.md
- 题解: problems/dp-solution.md
- 二分:
- 题目: problems/dichotomy.md
- 题解: problems/dichotomy-solution.md
- 分治:
- 题目: problems/divide.md
- 题解: problems/divide-solution.md
- 构造:
- 题目: problems/construct.md
- 题解: problems/construct-solution.md
- 计数:
- 题目: problems/count.md
- 题解: problems/count-solution.md
- 排序:
- 题目: problems/sort.md
- 题解: problems/sort-solution.md
- 前缀和:
- 题目: problems/presum.md
- 题解: problems/presum-solution.md
- 树状数组:
- 题目: problems/ta.md
- 题解: problems/ta-solution.md
- 数学:
- 题目: problems/math.md
- 题解: problems/math-solution.md
- 贪心:
- 题目: problems/greedy.md
- 题解: problems/greedy-solution.md
- 位运算:
- 题目: problems/bit.md
- 题解: problems/bit-solution.md
- 优化枚举:
- 题目: problems/op.md
- 题解: problems/op-solution.md
- 参赛:
- ICPC: enroll/icpc.md
- CCPC: enroll/ccpc.md
## Theme
theme:
name: 'material'
language: 'zh'
palette:
primary: 'Indigo'
accent: 'red'
include_search_page: false
search_index_only: true
favicon: 'favicon.ico'
logo:
icon: 'school'
feature:
tabs: true
font:
text: 'Fira Sans'
code: 'Fira Mono'
# Customization
extra:
search:
language: 'jp'
pagetime: 'on'
manifest: 'manifest.webmanifest'
githash: ''
social:
- type: github
link: https://cuccs.github.io/ctf-wiki/
- type: github
link: http://39.98.122.96/
extra_javascript:
- '_static/js/extra.js?v=16'
- 'https://cdnjs.loli.net/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML'
extra_css:
- '_static/css/extra.css?v=12'
# Extensions
markdown_extensions:
- admonition
- def_list
- footnotes
- meta
- toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.highlight:
linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.progressbar
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: math
class: arithmatex
format: !!python/name:pymdownx.arithmatex.fence_mathjax_format
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde