Skip to content

Commit 4b11b04

Browse files
committed
mkdoscs readme
1 parent 7cd83ea commit 4b11b04

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

docs/3_链表/linked_list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class Node(object):
7171

7272
# 小问题:
7373
- 这里单链表我没有实现 insert 方法,你能自己尝试实现吗? insert(value, new_value),我想在某个值之前插入一个值。你同样需要先查找,所以这个步骤也不够高效。
74-
- 你能尝试自己实现个 lru cache 吗?需要使用到我们这里提到的循环双端队列
74+
- 你能尝试自己实现个 lru cache 吗?需要使用到我们这里提到的循环双端链表
7575
- python 内置库的哪些数据结构使用到了本章讲的链式结构?
7676

7777
# 相关阅读

docs/index.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
目前就职于[知乎](https://www.zhihu.com/people/pegasus-wang/activities),从实习期间接触 Python 起一直从事 Python 网站后端开发,有一定 Python 的使用和实践经验。
1515

1616
知乎专栏:
17+
1718
- [《Python 学习之路》](https://zhuanlan.zhihu.com/c_85234576)
1819
- [《玩转vim(视频)》](https://zhuanlan.zhihu.com/vim-video)
1920

@@ -158,3 +159,19 @@ Python 抽象程度比较高, 我们能用更少的代码来实现功能,同
158159
文字内容讲义放到 github 上,供大家免费查阅。
159160

160161
如果你觉得文字内容或者视频内容有错误,欢迎在 github 上提 issue 讨论,我会修正相关内容,防止产生误导。
162+
163+
## 本电子书制作和写作方式
164+
使用 mkdocs 和 markdown 构建,使用 Python-Markdown-Math 完成数学公式
165+
166+
安装依赖:
167+
```sh
168+
pip install mkdocs # 制作电子书
169+
# https://stackoverflow.com/questions/27882261/mkdocs-and-mathjax/31874157
170+
pip install https://github.com/mitya57/python-markdown-math/archive/master.zip
171+
```
172+
173+
编写并查看:
174+
```sh
175+
mkdocs serve # 修改自动更新,http://localhost:8000 访问
176+
```
177+

0 commit comments

Comments
 (0)