Skip to content

Commit aa2c017

Browse files
committed
Deployed 69622b0 with MkDocs version: 0.17.3
1 parent 0230ae1 commit aa2c017

File tree

5 files changed

+43
-29
lines changed

5 files changed

+43
-29
lines changed
Binary file not shown.

03_链表/linked_list.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ def remove(self, value): # O(n)
6767
:param value:
6868
"""
6969
prevnode = self.root #
70-
curnode = self.root.next
7170
for curnode in self.iter_node():
7271
if curnode.value == value:
7372
prevnode.next = curnode.next

index.html

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,9 @@
9797

9898
<li><a class="toctree-l3" href="#_18">勘误</a></li>
9999

100-
<li><a class="toctree-l3" href="#_19">本电子书制作和写作方式</a></li>
100+
<li><a class="toctree-l3" href="#_19">如何提问?</a></li>
101+
102+
<li><a class="toctree-l3" href="#_20">本电子书制作和写作方式</a></li>
101103

102104
</ul>
103105

@@ -429,7 +431,15 @@ <h2 id="_18">勘误</h2>
429431
文字内容讲义和代码等放到 github 上,供大家免费查阅。</p>
430432
<p>如果你发现文字内容、代码内容、视频内容有错误或者有疑问,欢迎在 github 上提 issue 讨论,或者直接提 Merge Request,我会修正相关内容,防止对读者产生误导。
431433
同时非常感谢认真学习并及时发现书中错误的同学,非常欢迎针对知识本身的交流和讨论,任何建议和修正我都会认真求证。</p>
432-
<h2 id="_19">本电子书制作和写作方式</h2>
434+
<h2 id="_19">如何提问?</h2>
435+
<p>如果读者关于代码、视频、讲义有任何疑问,欢迎一起讨论
436+
请注意以下几点:</p>
437+
<ul>
438+
<li>优先在网易云课堂的讨论区提问,方便别的同学浏览。如果未购买视频,也可以直接在 github 里提出 issue,笔者会有空会给大家解答。</li>
439+
<li>描述尽量具体,视频或者代码哪一部分有问题?</li>
440+
<li>如果涉及到代码,提问时请保持代码的格式</li>
441+
</ul>
442+
<h2 id="_20">本电子书制作和写作方式</h2>
433443
<p>使用 mkdocs 和 markdown 构建,使用 Python-Markdown-Math 完成数学公式。
434444
markdown 语法参考:http://xianbai.me/learn-md/article/about/readme.html</p>
435445
<p>安装依赖:</p>
@@ -501,5 +511,5 @@ <h2 id="_19">本电子书制作和写作方式</h2>
501511

502512
<!--
503513
MkDocs version : 0.17.3
504-
Build Date UTC : 2018-06-11 00:56:11
514+
Build Date UTC : 2018-06-16 07:56:59
505515
-->

0 commit comments

Comments
 (0)