Skip to content

Commit a7772f1

Browse files
author
committed
Deployed a6490d3 with MkDocs version: 1.4.2
1 parent 2ea49b0 commit a7772f1

File tree

6 files changed

+114
-111
lines changed

6 files changed

+114
-111
lines changed

changelog/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -984,6 +984,7 @@ <h1 id="changelog">Changelog<a class="headerlink" href="#changelog" title="Perma
984984
<div class="heti-skip">
985985
<h2 id="2024">2024 年<a class="headerlink" href="#2024" title="Permanent link"></a></h2>
986986
<ul>
987+
<li><span style="font-family: var(--md-code-font-family)">02-24 <a href="https://github.com/ZJU-Turing/TuringCourses/commit/a6490d350e20784e17ad5811a42b8276cbd98b44">a6490d3</a> </span>docs: 修复 <a href="https://zju-turing.github.io/TuringCourses/major_basic/data_structure/">fds</a> 中失效链接,附加完整版课程大纲 (<a href="https://github.com/ZJU-Turing/TuringCourses/pull/157">#157</a>)</li>
987988
<li><span style="font-family: var(--md-code-font-family)">02-24 <a href="https://github.com/ZJU-Turing/TuringCourses/commit/f8eaa1c4e2940d89153ecdec58c8499deb4062ab">f8eaa1c</a> </span>docs: 添加<a href="https://zju-turing.github.io/TuringCourses/others/number_theory/">数论导引</a>课程内容 (<a href="https://github.com/ZJU-Turing/TuringCourses/pull/158">#158</a>)</li>
988989
<li><span style="font-family: var(--md-code-font-family)">02-20 <a href="https://github.com/ZJU-Turing/TuringCourses/commit/dd10f1bfa88ac7ecef82bcfb203ec4742d5aad60">dd10f1b</a> </span>docs: 添加<a href="https://zju-turing.github.io/TuringCourses/major_module/history_of_cs_ideas/">计算机科学思想史</a>课程内容,更新<a href="https://zju-turing.github.io/TuringCourses/math_phys/math_analysis1/">数分</a><a href="https://zju-turing.github.io/TuringCourses/math_phys/linear_algebra1/">线代</a>及多门专业课内容 (<a href="https://github.com/ZJU-Turing/TuringCourses/pull/155">#155</a>)<ul>
989990
<li>🔗 <a href="https://zju-turing.github.io/TuringCourses/major_basic/operating_system/">操作系统原理与实践</a> <a href="https://zju-turing.github.io/TuringCourses/major_mandatory/computer_networks/">计算机网络</a> <a href="https://zju-turing.github.io/TuringCourses/major_mandatory/cryptography/">密码学</a> <a href="https://zju-turing.github.io/TuringCourses/major_mandatory/data_security/">数据安全与隐私保护</a> ...</li>
317 KB
Binary file not shown.

major_basic/data_structure/index.html

+8-6
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,7 @@
10391039
<svg viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M20.71 7.04c.39-.39.39-1.04 0-1.41l-2.34-2.34c-.37-.39-1.02-.39-1.41 0l-1.84 1.83 3.75 3.75M3 17.25V21h3.75L17.81 9.93l-3.75-3.75L3 17.25Z"></path></svg>
10401040
</a>
10411041
<div class="admonition warning">
1042-
<p class="admonition-title">1707204036</p>
1042+
<p class="admonition-title">1708789779</p>
10431043
</div>
10441044
<h1 id="_1">数据结构基础<a class="headerlink" href="#_1" title="Permanent link"><span><span class="heti-spacing"> </span></span></a></h1>
10451045
<div class="badges">
@@ -1049,9 +1049,12 @@ <h1 id="_1">数据结构基础<a class="headerlink" href="#_1" title="Permanent
10491049
</div>
10501050
<h2 id="_2">课程学习内容<a class="headerlink" href="#_2" title="Permanent link"><span><span class="heti-spacing"> </span></span></a></h2>
10511051
<p><span>FDS<span class="heti-spacing"> </span></span>按专题授课,主要介绍栈、队列、树、堆、并查集、图等数据结构,以及最短路、搜索、网络流、排序、哈希等算法。求各专题之间联系不大,不存在前一节课不听后一节课就听不懂的情况。课程难度适中,课程要求主要是掌握简单算法的算法流程(会手算具体样例、会写代码实现),对于一些相对复杂的算法(比如网络流、<span>Tarjan<span class="heti-spacing"> </span></span>算法)以及复杂度和定理的证明点到为止,一般只在作业中要求,不会出现在考试中。</p>
1052-
<p>以下是课程内容大纲(有些内容以问题的形式呈现,答案参见<a href="https://note.starlightxyy.cn/College%20Courses/%E5%A4%A7%E4%BA%8C%E7%A7%8B%E5%86%AC%E7%AC%94%E8%AE%B0/FDS/#_2">详细版本</a>),可以用于开课前的自测,明确自身定位,以便制定学习计划;也可以用于考前复习。在浏览大纲的同时,可以标记自己不明确的定义以及不清楚的算法,在上课期间重点关照;而如果你对整个专题都非常熟悉,则可以考虑只看<span class="heti-skip"><span class="heti-spacing"> </span>ppt<span class="heti-spacing"> </span></span>不听课,用这节课时间做点别的事情。</p>
1052+
<p>以下有两个版本的课程内容大纲,自测版的部分条目以问题的形式出现,答案在完整版里。该大纲可以用于开课前的自测,明确自身定位,以便制定学习计划;也可以用于考前复习。在浏览大纲的同时,可以标记自己不明确的定义以及不清楚的算法,在上课期间重点关照;而如果你对整个专题都非常熟悉,则可以考虑只看<span class="heti-skip"><span class="heti-spacing"> </span>ppt<span class="heti-spacing"> </span></span>不听课,用这节课时间做点别的事情。</p>
1053+
<ul>
1054+
<li><a href="FDS_appendix_1.pdf">课程内容大纲(完整版)点击这里下载</a></li>
1055+
</ul>
10531056
<details class="note">
1054-
<summary>课程内容大纲</summary>
1057+
<summary>课程内容大纲(自测版)</summary>
10551058
<ol>
10561059
<li>第一节课介绍分数构成、作业形式等重要内容!</li>
10571060
<li>复杂度分析<ul>
@@ -1159,7 +1162,7 @@ <h2 id="_2">课程学习内容<a class="headerlink" href="#_2" title="Permanent
11591162
<li><span>seperate chaining:<span class="heti-spacing"> </span></span>对相同哈希值用链表存储</li>
11601163
</ol>
11611164
</li>
1162-
<li>删除(tag)</li>
1165+
<li>删除(tag) </li>
11631166
</ul>
11641167
</li>
11651168
</ol>
@@ -1256,7 +1259,6 @@ <h2 id="_5">课程教材<a class="headerlink" href="#_5" title="Permanent link">
12561259
<h2 id="_6">参考笔记<a class="headerlink" href="#_6" title="Permanent link"><span><span class="heti-spacing"> </span></span></a></h2>
12571260
<ul>
12581261
<li><span>xg<span class="heti-spacing"> </span></span>的数据结构复习笔记:<a href="https://note.tonycrane.cc/cs/algorithm/ds/">https://note.tonycrane.cc/cs/algorithm/ds/</a></li>
1259-
<li><span>xyy<span class="heti-spacing"> </span></span>的数据结构笔记:<a href="https://note.starlightxyy.cn/College%20Courses/%E5%A4%A7%E4%BA%8C%E7%A7%8B%E5%86%AC%E7%AC%94%E8%AE%B0/FDS/"><span>https://note.starlightxyy.cn/College Courses/<span class="heti-spacing"> </span></span>大二秋冬笔记<span><span class="heti-spacing"> </span>/FDS/</span></a></li>
12601262
<li><span>PTA<span class="heti-spacing"> </span></span>作业和历年卷上一些易错理论题的整理:<a href="https://lhxcs.github.io/note/cs/ds/pta/">https://lhxcs.github.io/note/cs/ds/pta/</a></li>
12611263
</ul>
12621264
<h2 id="_7">课程学习建议<a class="headerlink" href="#_7" title="Permanent link"><span><span class="heti-spacing"> </span></span></a></h2>
@@ -1339,7 +1341,7 @@ <h3 id="project-report"><span>Project Report<span class="heti-spacing"> </span><
13391341
}
13401342
</style>
13411343
<div id="footer-wrapper">
1342-
<p><span class="twemoji"><svg viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M21 13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1-2.1-2M12.5 7v5.2l4 2.4-1 1L11 13V7h1.5M11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10 9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1 7.5 7.1 7.9l-.1.2v1.8Z"></path></svg></span> 2024-02-06  <span class="twemoji"><svg viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"></path></svg></span> Contributors <span class="contributors"><a href="https://github.com/TonyCrane" target="_blank" title="TonyCrane"><img alt="TonyCrane" src="https://avatars.githubusercontent.com/u/44120331"/></a><a href="https://github.com/amorphophallus" target="_blank" title="amorphophallus"><img alt="amorphophallus" src="https://avatars.githubusercontent.com/u/40843154"/></a><a href="https://github.com/lhxcs" target="_blank" title="lhxcs"><img alt="lhxcs" src="https://avatars.githubusercontent.com/u/133565095"/></a><a href="https://github.com/77Adog" target="_blank" title="77Adog"><img alt="77Adog" src="https://avatars.githubusercontent.com/u/108264221"/></a></span></p>
1344+
<p><span class="twemoji"><svg viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M21 13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1-2.1-2M12.5 7v5.2l4 2.4-1 1L11 13V7h1.5M11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10 9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1 7.5 7.1 7.9l-.1.2v1.8Z"></path></svg></span> 2024-02-24  <span class="twemoji"><svg viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"></path></svg></span> Contributors <span class="contributors"><a href="https://github.com/TonyCrane" target="_blank" title="TonyCrane"><img alt="TonyCrane" src="https://avatars.githubusercontent.com/u/44120331"/></a><a href="https://github.com/amorphophallus" target="_blank" title="amorphophallus"><img alt="amorphophallus" src="https://avatars.githubusercontent.com/u/40843154"/></a><a href="https://github.com/lhxcs" target="_blank" title="lhxcs"><img alt="lhxcs" src="https://avatars.githubusercontent.com/u/133565095"/></a><a href="https://github.com/77Adog" target="_blank" title="77Adog"><img alt="77Adog" src="https://avatars.githubusercontent.com/u/108264221"/></a></span></p>
13431345
</div>
13441346
<style>
13451347
.md-content .admonition:first-of-type {

search/search_index.json

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)