File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ class Node(object):
71
71
72
72
# 小问题:
73
73
- 这里单链表我没有实现 insert 方法,你能自己尝试实现吗? insert(value, new_value),我想在某个值之前插入一个值。你同样需要先查找,所以这个步骤也不够高效。
74
- - 你能尝试自己实现个 lru cache 吗?需要使用到我们这里提到的循环双端队列
74
+ - 你能尝试自己实现个 lru cache 吗?需要使用到我们这里提到的循环双端链表
75
75
- python 内置库的哪些数据结构使用到了本章讲的链式结构?
76
76
77
77
# 相关阅读
Original file line number Diff line number Diff line change 14
14
目前就职于[ 知乎] ( https://www.zhihu.com/people/pegasus-wang/activities ) ,从实习期间接触 Python 起一直从事 Python 网站后端开发,有一定 Python 的使用和实践经验。
15
15
16
16
知乎专栏:
17
+
17
18
- [ 《Python 学习之路》] ( https://zhuanlan.zhihu.com/c_85234576 )
18
19
- [ 《玩转vim(视频)》] ( https://zhuanlan.zhihu.com/vim-video )
19
20
@@ -158,3 +159,19 @@ Python 抽象程度比较高, 我们能用更少的代码来实现功能,同
158
159
文字内容讲义放到 github 上,供大家免费查阅。
159
160
160
161
如果你觉得文字内容或者视频内容有错误,欢迎在 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
+
You can’t perform that action at this time.
0 commit comments