-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
22 lines (20 loc) · 862 Bytes
/
mkdocs.yml
File metadata and controls
22 lines (20 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
site_name: Python 数据结构与算法视频教程
theme: readthedocs
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML
markdown_extensions:
- mdx_math:
enable_dollar_delimiter: True #for use of inline $..$
pages:
- 课程简介: 'index.md'
- 课程简介之笨方法学算法: '0_课程简介之笨方法学算法/why_and_how_to_learn.md'
- 抽象数据类型和面向对象编程: '1_抽象数据类型和面向对象编程/ADT_OOP.md'
- 数组和列表: '2_数组和列表/array_and_list.md'
- 链表: '3_链表/linked_list.md'
- 队列: '4_队列/queue.md'
- 栈: '5_栈/stack.md'
- 算法分析: '6_算法分析/big_o.md'
- 哈希表: '7_哈希表/hashtable.md'
- 字典: '8_字典/dict.md'
- 集合: '9_集合/set.md'
- 递归: '10_递归/recursion.md'