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):
7171
7272# 小问题:
7373- 这里单链表我没有实现 insert 方法,你能自己尝试实现吗? insert(value, new_value),我想在某个值之前插入一个值。你同样需要先查找,所以这个步骤也不够高效。
74- - 你能尝试自己实现个 lru cache 吗?需要使用到我们这里提到的循环双端队列
74+ - 你能尝试自己实现个 lru cache 吗?需要使用到我们这里提到的循环双端链表
7575- python 内置库的哪些数据结构使用到了本章讲的链式结构?
7676
7777# 相关阅读
Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments