Skip to content

Commit fddc35f

Browse files
committed
Deployed 000579a with MkDocs version: 0.17.4
1 parent d2cb66d commit fddc35f

File tree

5 files changed

+585
-655
lines changed

5 files changed

+585
-655
lines changed

01_抽象数据类型和面向对象编程/bag_adt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def __init__(self, maxsize=10):
88
self._items = list()
99

1010
def add(self, item):
11-
if len(self) > self.maxsize:
11+
if len(self) >= self.maxsize:
1212
raise Exception('Full')
1313
self._items.append(item)
1414

Binary file not shown.

index.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,7 @@ <h2 id="_8">受众</h2>
337337
<p>想要学习 Python 算法和数据结构的初、中级同学,包括自学的同学和本科低年级学生等。需要掌握 Python
338338
的基本语法和面向对象编程的一些概念,有一定的 Python 使用经验。我们这里尽量只使用最基本的 Python 语法,不会再去介绍用到的 Python 语法糖。</p>
339339
<h1 id="_9">预备知识</h1>
340+
<p>(注意:有些初学者反应看起来吃力,为了不花冤枉钱,我建议你先看看本电子书的内容和代码是否在自己的理解范围内,再决定是否购买视频。有些概念不是立马就能理解的,需要反复思考实践)</p>
340341
<ul>
341342
<li>了解基本的数据结构和算法的概念,不适合<strong>完全</strong>没有了解过算法的新手。</li>
342343
<li>有一定的 python 基础,掌握 Python 基本语法,了解 python 内置数据结构的使用方式。有过使用 Python 的经验。知道 class、module、yield 等。如果是 python 初学者,建议先补补基础,否则有些部分看着会比较吃力。</li>
@@ -513,6 +514,6 @@ <h2 id="_20">本电子书制作和写作方式</h2>
513514
</html>
514515

515516
<!--
516-
MkDocs version : 0.17.3
517-
Build Date UTC : 2018-07-24 11:16:24
517+
MkDocs version : 0.17.4
518+
Build Date UTC : 2018-07-27 01:09:17
518519
-->

search/search_index.json

Lines changed: 557 additions & 557 deletions
Large diffs are not rendered by default.

sitemap.xml

Lines changed: 24 additions & 95 deletions
Original file line numberDiff line numberDiff line change
@@ -1,194 +1,123 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3-
4-
53
<url>
64
<loc>/</loc>
7-
<lastmod>2018-07-24</lastmod>
5+
<lastmod>2018-07-27</lastmod>
86
<changefreq>daily</changefreq>
97
</url>
10-
11-
12-
138
<url>
149
<loc>/00_课程简介之笨方法学算法/why_and_how_to_learn/</loc>
15-
<lastmod>2018-07-24</lastmod>
10+
<lastmod>2018-07-27</lastmod>
1611
<changefreq>daily</changefreq>
1712
</url>
18-
19-
20-
2113
<url>
2214
<loc>/01_抽象数据类型和面向对象编程/ADT_OOP/</loc>
23-
<lastmod>2018-07-24</lastmod>
15+
<lastmod>2018-07-27</lastmod>
2416
<changefreq>daily</changefreq>
2517
</url>
26-
27-
28-
2918
<url>
3019
<loc>/02_数组和列表/array_and_list/</loc>
31-
<lastmod>2018-07-24</lastmod>
20+
<lastmod>2018-07-27</lastmod>
3221
<changefreq>daily</changefreq>
3322
</url>
34-
35-
36-
3723
<url>
3824
<loc>/03_链表/linked_list/</loc>
39-
<lastmod>2018-07-24</lastmod>
25+
<lastmod>2018-07-27</lastmod>
4026
<changefreq>daily</changefreq>
4127
</url>
42-
43-
44-
4528
<url>
4629
<loc>/04_队列/queue/</loc>
47-
<lastmod>2018-07-24</lastmod>
30+
<lastmod>2018-07-27</lastmod>
4831
<changefreq>daily</changefreq>
4932
</url>
50-
51-
52-
5333
<url>
5434
<loc>/05_栈/stack/</loc>
55-
<lastmod>2018-07-24</lastmod>
35+
<lastmod>2018-07-27</lastmod>
5636
<changefreq>daily</changefreq>
5737
</url>
58-
59-
60-
6138
<url>
6239
<loc>/06_算法分析/big_o/</loc>
63-
<lastmod>2018-07-24</lastmod>
40+
<lastmod>2018-07-27</lastmod>
6441
<changefreq>daily</changefreq>
6542
</url>
66-
67-
68-
6943
<url>
7044
<loc>/07_哈希表/hashtable/</loc>
71-
<lastmod>2018-07-24</lastmod>
45+
<lastmod>2018-07-27</lastmod>
7246
<changefreq>daily</changefreq>
7347
</url>
74-
75-
76-
7748
<url>
7849
<loc>/08_字典/dict/</loc>
79-
<lastmod>2018-07-24</lastmod>
50+
<lastmod>2018-07-27</lastmod>
8051
<changefreq>daily</changefreq>
8152
</url>
82-
83-
84-
8553
<url>
8654
<loc>/09_集合/set/</loc>
87-
<lastmod>2018-07-24</lastmod>
55+
<lastmod>2018-07-27</lastmod>
8856
<changefreq>daily</changefreq>
8957
</url>
90-
91-
92-
9358
<url>
9459
<loc>/10_递归/recursion/</loc>
95-
<lastmod>2018-07-24</lastmod>
60+
<lastmod>2018-07-27</lastmod>
9661
<changefreq>daily</changefreq>
9762
</url>
98-
99-
100-
10163
<url>
10264
<loc>/11_线性查找与二分查找/search/</loc>
103-
<lastmod>2018-07-24</lastmod>
65+
<lastmod>2018-07-27</lastmod>
10466
<changefreq>daily</changefreq>
10567
</url>
106-
107-
108-
10968
<url>
11069
<loc>/12_基本排序算法/basic_sort/</loc>
111-
<lastmod>2018-07-24</lastmod>
70+
<lastmod>2018-07-27</lastmod>
11271
<changefreq>daily</changefreq>
11372
</url>
114-
115-
116-
117-
11873
<url>
11974
<loc>/13_高级排序算法/advanced_sorting/</loc>
120-
<lastmod>2018-07-24</lastmod>
75+
<lastmod>2018-07-27</lastmod>
12176
<changefreq>daily</changefreq>
12277
</url>
123-
12478
<url>
12579
<loc>/13_高级排序算法/merge_sort/</loc>
126-
<lastmod>2018-07-24</lastmod>
80+
<lastmod>2018-07-27</lastmod>
12781
<changefreq>daily</changefreq>
12882
</url>
129-
13083
<url>
13184
<loc>/13_高级排序算法/quick_sort/</loc>
132-
<lastmod>2018-07-24</lastmod>
85+
<lastmod>2018-07-27</lastmod>
13386
<changefreq>daily</changefreq>
13487
</url>
135-
136-
137-
138-
13988
<url>
14089
<loc>/14_树与二叉树/tree/</loc>
141-
<lastmod>2018-07-24</lastmod>
90+
<lastmod>2018-07-27</lastmod>
14291
<changefreq>daily</changefreq>
14392
</url>
144-
145-
146-
14793
<url>
14894
<loc>/15_堆与堆排序/heap_and_heapsort/</loc>
149-
<lastmod>2018-07-24</lastmod>
95+
<lastmod>2018-07-27</lastmod>
15096
<changefreq>daily</changefreq>
15197
</url>
152-
153-
154-
15598
<url>
15699
<loc>/16_优先级队列/priority_queue/</loc>
157-
<lastmod>2018-07-24</lastmod>
100+
<lastmod>2018-07-27</lastmod>
158101
<changefreq>daily</changefreq>
159102
</url>
160-
161-
162-
163103
<url>
164104
<loc>/17_二叉查找树/binary_search_tree/</loc>
165-
<lastmod>2018-07-24</lastmod>
105+
<lastmod>2018-07-27</lastmod>
166106
<changefreq>daily</changefreq>
167107
</url>
168-
169-
170-
171108
<url>
172109
<loc>/18_图与图的遍历/graph/</loc>
173-
<lastmod>2018-07-24</lastmod>
110+
<lastmod>2018-07-27</lastmod>
174111
<changefreq>daily</changefreq>
175112
</url>
176-
177-
178-
179113
<url>
180114
<loc>/19_python内置常用算法和数据结构/builtins/</loc>
181-
<lastmod>2018-07-24</lastmod>
115+
<lastmod>2018-07-27</lastmod>
182116
<changefreq>daily</changefreq>
183117
</url>
184-
185-
186-
187118
<url>
188119
<loc>/20_面试指南/interview/</loc>
189-
<lastmod>2018-07-24</lastmod>
120+
<lastmod>2018-07-27</lastmod>
190121
<changefreq>daily</changefreq>
191122
</url>
192-
193-
194123
</urlset>

0 commit comments

Comments
 (0)