Skip to content

Commit f8a503e

Browse files
committed
Deployed c81ebc6 with MkDocs version: 0.17.3
1 parent c76ca0e commit f8a503e

File tree

14 files changed

+429
-58
lines changed

14 files changed

+429
-58
lines changed

0_课程简介之笨方法学算法/why_and_how_to_learn/index.html

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
<link rel="shortcut icon" href="../../img/favicon.ico">
11-
<title>课程简介之本方法学算法 - Python 数据结构与算法视频教程</title>
11+
<title>课程简介之笨方法学算法 - Python 数据结构与算法视频教程</title>
1212
<link href='https://fonts.googleapis.com/css?family=Lato:400,700|Roboto+Slab:400,700|Inconsolata:400,700' rel='stylesheet' type='text/css'>
1313

1414
<link rel="stylesheet" href="../../css/theme.css" type="text/css" />
@@ -17,7 +17,7 @@
1717

1818
<script>
1919
// Current page data
20-
var mkdocs_page_name = "\u8bfe\u7a0b\u7b80\u4ecb\u4e4b\u672c\u65b9\u6cd5\u5b66\u7b97\u6cd5";
20+
var mkdocs_page_name = "\u8bfe\u7a0b\u7b80\u4ecb\u4e4b\u7b28\u65b9\u6cd5\u5b66\u7b97\u6cd5";
2121
var mkdocs_page_input_path = "0_\u8bfe\u7a0b\u7b80\u4ecb\u4e4b\u7b28\u65b9\u6cd5\u5b66\u7b97\u6cd5/why_and_how_to_learn.md";
2222
var mkdocs_page_url = "/0_\u8bfe\u7a0b\u7b80\u4ecb\u4e4b\u7b28\u65b9\u6cd5\u5b66\u7b97\u6cd5/why_and_how_to_learn/";
2323
</script>
@@ -54,7 +54,7 @@
5454

5555
<li class="toctree-l1 current">
5656

57-
<a class="current" href="./">课程简介之本方法学算法</a>
57+
<a class="current" href="./">课程简介之笨方法学算法</a>
5858
<ul class="subnav">
5959

6060
<li class="toctree-l2"><a href="#_1">什么是算法和数据结构?</a></li>
@@ -99,6 +99,11 @@
9999
<a class="" href="../../6_算法分析/big_o/">算法分析</a>
100100
</li>
101101

102+
<li class="toctree-l1">
103+
104+
<a class="" href="../../7_哈希表/hashtable/">哈希表</a>
105+
</li>
106+
102107
</ul>
103108
</div>
104109
&nbsp;
@@ -121,7 +126,7 @@
121126

122127

123128

124-
<li>课程简介之本方法学算法</li>
129+
<li>课程简介之笨方法学算法</li>
125130
<li class="wy-breadcrumbs-aside">
126131

127132
</li>

1_抽象数据类型和面向对象编程/ADT_OOP/index.html

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
<li class="toctree-l1">
5656

57-
<a class="" href="../../0_课程简介之笨方法学算法/why_and_how_to_learn/">课程简介之本方法学算法</a>
57+
<a class="" href="../../0_课程简介之笨方法学算法/why_and_how_to_learn/">课程简介之笨方法学算法</a>
5858
</li>
5959

6060
<li class="toctree-l1 current">
@@ -108,6 +108,11 @@
108108
<a class="" href="../../6_算法分析/big_o/">算法分析</a>
109109
</li>
110110

111+
<li class="toctree-l1">
112+
113+
<a class="" href="../../7_哈希表/hashtable/">哈希表</a>
114+
</li>
115+
111116
</ul>
112117
</div>
113118
&nbsp;
@@ -188,7 +193,7 @@ <h1 id="_2">延伸阅读:</h1>
188193
<a href="../../2_数组和列表/array_and_list/" class="btn btn-neutral float-right" title="数组和列表">Next <span class="icon icon-circle-arrow-right"></span></a>
189194

190195

191-
<a href="../../0_课程简介之笨方法学算法/why_and_how_to_learn/" class="btn btn-neutral" title="课程简介之本方法学算法"><span class="icon icon-circle-arrow-left"></span> Previous</a>
196+
<a href="../../0_课程简介之笨方法学算法/why_and_how_to_learn/" class="btn btn-neutral" title="课程简介之笨方法学算法"><span class="icon icon-circle-arrow-left"></span> Previous</a>
192197

193198
</div>
194199

2_数组和列表/array_and_list/index.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
<li class="toctree-l1">
5656

57-
<a class="" href="../../0_课程简介之笨方法学算法/why_and_how_to_learn/">课程简介之本方法学算法</a>
57+
<a class="" href="../../0_课程简介之笨方法学算法/why_and_how_to_learn/">课程简介之笨方法学算法</a>
5858
</li>
5959

6060
<li class="toctree-l1">
@@ -108,6 +108,11 @@
108108
<a class="" href="../../6_算法分析/big_o/">算法分析</a>
109109
</li>
110110

111+
<li class="toctree-l1">
112+
113+
<a class="" href="../../7_哈希表/hashtable/">哈希表</a>
114+
</li>
115+
111116
</ul>
112117
</div>
113118
&nbsp;

3_链表/linked_list/index.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
<li class="toctree-l1">
5656

57-
<a class="" href="../../0_课程简介之笨方法学算法/why_and_how_to_learn/">课程简介之本方法学算法</a>
57+
<a class="" href="../../0_课程简介之笨方法学算法/why_and_how_to_learn/">课程简介之笨方法学算法</a>
5858
</li>
5959

6060
<li class="toctree-l1">
@@ -105,6 +105,11 @@
105105
<a class="" href="../../6_算法分析/big_o/">算法分析</a>
106106
</li>
107107

108+
<li class="toctree-l1">
109+
110+
<a class="" href="../../7_哈希表/hashtable/">哈希表</a>
111+
</li>
112+
108113
</ul>
109114
</div>
110115
&nbsp;

404.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848
<li class="toctree-l1">
4949

50-
<a class="" href="/0_课程简介之笨方法学算法/why_and_how_to_learn/">课程简介之本方法学算法</a>
50+
<a class="" href="/0_课程简介之笨方法学算法/why_and_how_to_learn/">课程简介之笨方法学算法</a>
5151
</li>
5252

5353
<li class="toctree-l1">
@@ -80,6 +80,11 @@
8080
<a class="" href="/6_算法分析/big_o/">算法分析</a>
8181
</li>
8282

83+
<li class="toctree-l1">
84+
85+
<a class="" href="/7_哈希表/hashtable/">哈希表</a>
86+
</li>
87+
8388
</ul>
8489
</div>
8590
&nbsp;

4_队列/queue/index.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
<li class="toctree-l1">
5656

57-
<a class="" href="../../0_课程简介之笨方法学算法/why_and_how_to_learn/">课程简介之本方法学算法</a>
57+
<a class="" href="../../0_课程简介之笨方法学算法/why_and_how_to_learn/">课程简介之笨方法学算法</a>
5858
</li>
5959

6060
<li class="toctree-l1">
@@ -105,6 +105,11 @@
105105
<a class="" href="../../6_算法分析/big_o/">算法分析</a>
106106
</li>
107107

108+
<li class="toctree-l1">
109+
110+
<a class="" href="../../7_哈希表/hashtable/">哈希表</a>
111+
</li>
112+
108113
</ul>
109114
</div>
110115
&nbsp;

5_栈/stack/index.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
<li class="toctree-l1">
5656

57-
<a class="" href="../../0_课程简介之笨方法学算法/why_and_how_to_learn/">课程简介之本方法学算法</a>
57+
<a class="" href="../../0_课程简介之笨方法学算法/why_and_how_to_learn/">课程简介之笨方法学算法</a>
5858
</li>
5959

6060
<li class="toctree-l1">
@@ -102,6 +102,11 @@
102102
<a class="" href="../../6_算法分析/big_o/">算法分析</a>
103103
</li>
104104

105+
<li class="toctree-l1">
106+
107+
<a class="" href="../../7_哈希表/hashtable/">哈希表</a>
108+
</li>
109+
105110
</ul>
106111
</div>
107112
&nbsp;

0 commit comments

Comments
 (0)