Skip to content

Commit 7be6e3b

Browse files
committed
Deployed bf8b177 with MkDocs version: 1.0.4
1 parent e76030b commit 7be6e3b

File tree

8 files changed

+52
-38
lines changed

8 files changed

+52
-38
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

index.html

Lines changed: 27 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -272,12 +272,22 @@ <h2 id="_1">课程简介</h2>
272272
本教程是付费教程(文字内容和代码免费),因为笔者录制的过程中除了购买软件、手写板等硬件之外,业余需要花费很多时间和精力来录制视频、查资料、编写课件和代码,养家糊口不容易,希望大家体谅。</p>
273273
<h2 id="_2">链接</h2>
274274
<p>视频教程已经发布在网易云课堂和 csdn 学院,内容一致,推荐使用网易云课堂。</p>
275-
<p><a href="http://study.163.com/course/introduction.htm?courseId=1005526003">网易云课堂: Python数据结构与算法教程</a> 视频教程</p>
276-
<p><a href="https://edu.csdn.net/course/detail/8332">csdn 学院:Python数据结构与算法教程</a></p>
277-
<p><a href="http://pegasuswang.github.io/python_data_structures_and_algorithms/">网上阅读《Python 算法与数据结构教程 》</a></p>
278-
<p><a href="https://github.com/PegasusWang/python_data_structures_and_algorithms">github 链接</a></p>
279-
<p><a href="http://python-data-structures-and-algorithms.readthedocs.io/zh/latest/">readthedoc 电子书下载</a></p>
280-
<p><a href="https://zhuanlan.zhihu.com/p/36038003">《开源一个 Python 算法和数据结构中文教程[视频]》</a> 视频讲解示例</p>
275+
<ul>
276+
<li><a href="http://study.163.com/course/introduction.htm?courseId=1005526003">网易云课堂: Python数据结构与算法教程</a></li>
277+
<li><a href="https://edu.csdn.net/course/detail/8332">csdn 学院:Python数据结构与算法教程</a></li>
278+
</ul>
279+
<p>电子书地址:</p>
280+
<ul>
281+
<li><a href="http://pegasuswang.github.io/python_data_structures_and_algorithms/">网上阅读《Python 算法与数据结构教程 》</a></li>
282+
<li><a href="https://github.com/PegasusWang/python_data_structures_and_algorithms">github 链接</a></li>
283+
<li><a href="http://python-data-structures-and-algorithms.readthedocs.io/zh/latest/">readthedoc 电子书下载</a></li>
284+
<li><a href="https://zhuanlan.zhihu.com/p/36038003">《开源一个 Python 算法和数据结构中文教程[视频]》</a> 视频讲解示例</li>
285+
</ul>
286+
<p>leetcode 实战教程:</p>
287+
<p>如果您有一定的基础,只是想快速针对面试刷题,也可以直接参考笔者针对《剑指offer》和 leetcode 经典题目的 Python 刷题图解实战。</p>
288+
<ul>
289+
<li><a href="https://edu.csdn.net/course/detail/29389?event_id=1256&amp;event_type=fission&amp;share_username=WangPegasus&amp;sign=22bded1300551606e3882cf6e4a265a1">图解Python数据结构与算法-实战篇- leetcode经典题目实战</a></li>
290+
</ul>
281291
<h2 id="_3">痛点</h2>
282292
<ul>
283293
<li>讲 Python 数据结构和算法的资料很少,中文资料更少</li>
@@ -286,7 +296,7 @@ <h2 id="_3">痛点</h2>
286296
<li>网上很多视频教程不够循序渐进,不成系统</li>
287297
</ul>
288298
<h2 id="_4">作者简介</h2>
289-
<p>曾就职于<a href="https://www.zhihu.com/people/pegasus-wang/activities">知乎</a>现腾讯后端工程师,多年 Python 开发经验。</p>
299+
<p>曾就职于<a href="https://www.zhihu.com/people/pegasus-wang/activities">知乎</a>现腾讯视频后端工程师,多年 Python/Go 开发经验。</p>
290300
<p>知乎专栏:</p>
291301
<ul>
292302
<li><a href="https://zhuanlan.zhihu.com/c_85234576">《Python 学习之路》</a></li>
@@ -352,15 +362,17 @@ <h1 id="_9">预备知识</h1>
352362
<li>无需太多数学基础,仅在算法时间复杂度分析的时候会用到一些简单数学知识。对于学习基础算法,逻辑思维可能更重要一些</li>
353363
</ul>
354364
<h2 id="_10">参考教材和链接</h2>
355-
<p>这里我参考过三本书,均可以网购纸质版或者网络上搜索电子版,建议大家先大致阅读一本教材掌握基本原理:</p>
365+
<p>这里我参考过三本书,均可以网购纸质版或者网络上搜索电子版,建议大家先大致阅读一本教材掌握基本原理,本教程重点在于 Pythonic 代码实现</p>
356366
<p><a href="https://book.douban.com/subject/26979890/">《算法图解》</a>: 图解的形式很适合新手,示例使用的是 python。推荐基础较少的同学看这本书入门</p>
357367
<p><a href="https://book.douban.com/subject/10607365/">《Data Structures and Algorithms in Python》</a>: 适合对 Python
358368
和算法比较熟悉的同学,或者是有其他语言编程经验的同学。本书是英文版,缺点是书中错误真的很多,代码有些无法运行而且不够 Pythonic。该书 <a href="http://bcs.wiley.com/he-bcs/Books?action=resource&amp;bcsId=9003&amp;itemId=0470618299&amp;resourceId=35653">勘误</a></p>
359-
<p><a href="https://book.douban.com/subject/20432061/">《算法导论》第三版</a>: 喜欢数学证明和板砖书的同学可以参考,有很多高级主题。使用伪代码</p>
369+
<p><a href="https://book.douban.com/subject/20432061/">《算法导论》第三版</a>: 喜欢数学证明和板砖书的同学可以参考,有很多高级主题。使用伪代码可以很快翻译成 Python</p>
360370
<h2 id="_11">算法可视化</h2>
361371
<p>学习算法的过程中有时候会比较抽象,这里给大家推荐一些可视化的网站,方便更直观地理解:</p>
362-
<p>https://github.com/algorithm-visualizer/algorithm-visualizer</p>
363-
<p>https://www.cs.usfca.edu/~galles/visualization/Algorithms.html</p>
372+
<ul>
373+
<li>https://github.com/algorithm-visualizer/algorithm-visualizer</li>
374+
<li>https://www.cs.usfca.edu/~galles/visualization/Algorithms.html</li>
375+
</ul>
364376
<h2 id="_12">讲课形式</h2>
365377
<p>绘图演示+手写板+现场编码</p>
366378
<p>我将使用绘图软件+手写板进行类似于纸笔形式的讲解,边讲边开个终端分成两个窗口,一个用 vim
@@ -391,7 +403,9 @@ <h2 id="_14">资料</h2>
391403
</ul>
392404
<h2 id="_15">如何获取每章代码</h2>
393405
<p>注意每一章目录里都有 py 文件,在电子书里看不到。clone 下本代码仓库找到对应目录里的 python 文件即是每章涉及到的代码。
394-
由于代码实现千差万别,本书代码实现具有一定的个人风格,不代表最佳实现,仅供参考。</p>
406+
由于代码实现千差万别,本书代码实现具有一定的个人风格,不代表最佳实现,仅供参考,笔者尽量使用 python2/3 兼容代码。
407+
目前已经新增《剑指offer》大部分经典题目的 Python 解法。本项目遵守 MIT 协议,本项目下的所有代码您可以任意学习修改和使用,
408+
但是直接引用代码请加上本项目 github 地址。</p>
395409
<h2 id="_16">如何学习</h2>
396410
<p>笔者讲课录制视频的过程也是自己再整理和学习的过程,录制视频之前需要参考很多资料
397411
希望对所讲到的内容,你能够</p>
@@ -587,5 +601,5 @@ <h2 id="_22">本电子书制作和写作方式</h2>
587601

588602
<!--
589603
MkDocs version : 1.0.4
590-
Build Date UTC : 2019-12-14 09:24:38
604+
Build Date UTC : 2020-06-14 01:44:56
591605
-->

search/search_index.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

sitemap.xml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,122 +2,122 @@
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
33
<url>
44
<loc>None</loc>
5-
<lastmod>2019-12-14</lastmod>
5+
<lastmod>2020-06-14</lastmod>
66
<changefreq>daily</changefreq>
77
</url>
88
<url>
99
<loc>None</loc>
10-
<lastmod>2019-12-14</lastmod>
10+
<lastmod>2020-06-14</lastmod>
1111
<changefreq>daily</changefreq>
1212
</url>
1313
<url>
1414
<loc>None</loc>
15-
<lastmod>2019-12-14</lastmod>
15+
<lastmod>2020-06-14</lastmod>
1616
<changefreq>daily</changefreq>
1717
</url>
1818
<url>
1919
<loc>None</loc>
20-
<lastmod>2019-12-14</lastmod>
20+
<lastmod>2020-06-14</lastmod>
2121
<changefreq>daily</changefreq>
2222
</url>
2323
<url>
2424
<loc>None</loc>
25-
<lastmod>2019-12-14</lastmod>
25+
<lastmod>2020-06-14</lastmod>
2626
<changefreq>daily</changefreq>
2727
</url>
2828
<url>
2929
<loc>None</loc>
30-
<lastmod>2019-12-14</lastmod>
30+
<lastmod>2020-06-14</lastmod>
3131
<changefreq>daily</changefreq>
3232
</url>
3333
<url>
3434
<loc>None</loc>
35-
<lastmod>2019-12-14</lastmod>
35+
<lastmod>2020-06-14</lastmod>
3636
<changefreq>daily</changefreq>
3737
</url>
3838
<url>
3939
<loc>None</loc>
40-
<lastmod>2019-12-14</lastmod>
40+
<lastmod>2020-06-14</lastmod>
4141
<changefreq>daily</changefreq>
4242
</url>
4343
<url>
4444
<loc>None</loc>
45-
<lastmod>2019-12-14</lastmod>
45+
<lastmod>2020-06-14</lastmod>
4646
<changefreq>daily</changefreq>
4747
</url>
4848
<url>
4949
<loc>None</loc>
50-
<lastmod>2019-12-14</lastmod>
50+
<lastmod>2020-06-14</lastmod>
5151
<changefreq>daily</changefreq>
5252
</url>
5353
<url>
5454
<loc>None</loc>
55-
<lastmod>2019-12-14</lastmod>
55+
<lastmod>2020-06-14</lastmod>
5656
<changefreq>daily</changefreq>
5757
</url>
5858
<url>
5959
<loc>None</loc>
60-
<lastmod>2019-12-14</lastmod>
60+
<lastmod>2020-06-14</lastmod>
6161
<changefreq>daily</changefreq>
6262
</url>
6363
<url>
6464
<loc>None</loc>
65-
<lastmod>2019-12-14</lastmod>
65+
<lastmod>2020-06-14</lastmod>
6666
<changefreq>daily</changefreq>
6767
</url>
6868
<url>
6969
<loc>None</loc>
70-
<lastmod>2019-12-14</lastmod>
70+
<lastmod>2020-06-14</lastmod>
7171
<changefreq>daily</changefreq>
7272
</url>
7373
<url>
7474
<loc>None</loc>
75-
<lastmod>2019-12-14</lastmod>
75+
<lastmod>2020-06-14</lastmod>
7676
<changefreq>daily</changefreq>
7777
</url>
7878
<url>
7979
<loc>None</loc>
80-
<lastmod>2019-12-14</lastmod>
80+
<lastmod>2020-06-14</lastmod>
8181
<changefreq>daily</changefreq>
8282
</url>
8383
<url>
8484
<loc>None</loc>
85-
<lastmod>2019-12-14</lastmod>
85+
<lastmod>2020-06-14</lastmod>
8686
<changefreq>daily</changefreq>
8787
</url>
8888
<url>
8989
<loc>None</loc>
90-
<lastmod>2019-12-14</lastmod>
90+
<lastmod>2020-06-14</lastmod>
9191
<changefreq>daily</changefreq>
9292
</url>
9393
<url>
9494
<loc>None</loc>
95-
<lastmod>2019-12-14</lastmod>
95+
<lastmod>2020-06-14</lastmod>
9696
<changefreq>daily</changefreq>
9797
</url>
9898
<url>
9999
<loc>None</loc>
100-
<lastmod>2019-12-14</lastmod>
100+
<lastmod>2020-06-14</lastmod>
101101
<changefreq>daily</changefreq>
102102
</url>
103103
<url>
104104
<loc>None</loc>
105-
<lastmod>2019-12-14</lastmod>
105+
<lastmod>2020-06-14</lastmod>
106106
<changefreq>daily</changefreq>
107107
</url>
108108
<url>
109109
<loc>None</loc>
110-
<lastmod>2019-12-14</lastmod>
110+
<lastmod>2020-06-14</lastmod>
111111
<changefreq>daily</changefreq>
112112
</url>
113113
<url>
114114
<loc>None</loc>
115-
<lastmod>2019-12-14</lastmod>
115+
<lastmod>2020-06-14</lastmod>
116116
<changefreq>daily</changefreq>
117117
</url>
118118
<url>
119119
<loc>None</loc>
120-
<lastmod>2019-12-14</lastmod>
120+
<lastmod>2020-06-14</lastmod>
121121
<changefreq>daily</changefreq>
122122
</url>
123123
</urlset>

sitemap.xml.gz

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)