Skip to content

Commit

Permalink
test with mkdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
TyrannosaurusLjx committed Mar 20, 2024
1 parent 36c68b4 commit b0b44be
Show file tree
Hide file tree
Showing 38 changed files with 17 additions and 3,042 deletions.
4 changes: 2 additions & 2 deletions docs/Notebook/DataStructure/表.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ note:顺序表一定要连续存储,但是数组不一定
可以发现,数组元素都被初始化为 1,但是如果 index1-index2 两个地方的元素被修改,那么中间的元素也会被随机改变

## 链表:线性表的链式表示
[单链表](./SinleList.h)
单链表
```cpp
//single node
struct Node{
Comparable value;
Node* next;
}
```
[双链表](./DoubleList.h)
双链表
```cpp
// double node
struct Node{
Expand Down
2 changes: 1 addition & 1 deletion docs/Notebook/Operating_System/2-进程与线程.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@

![image_2024-03-07-14-23-25](img/image_2024-03-07-14-23-25.png)

可以优先处理紧急任务,让进程按时间片轮流执行,适合[分时操作系统,实时操作系统](./chapter1.md@L46)
可以优先处理紧急任务,让进程按时间片轮流执行,适合分时操作系统,实时操作系统

# 进程调度和进程切换
![image_2024-03-07-14-30-20](img/image_2024-03-07-14-30-20.png)
Expand Down
2 changes: 0 additions & 2 deletions docs/Notebook/fix/_navbar.md

This file was deleted.

29 changes: 0 additions & 29 deletions docs/Notebook/fix/_sidebar.md

This file was deleted.

21 changes: 6 additions & 15 deletions docs/blog/.authors.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
author1:
name: John Doe
email: [email protected]
website: https://example.com/john
bio: |
John is a passionate writer who loves to explore the world of technology and share his insights with others.
avatar: assets/authors/john-doe.jpg

author2:
name: Jane Smith
email: [email protected]
website: https://example.com/jane
bio: |
Jane is a photographer and nature enthusiast. She enjoys capturing the beauty of the world through her lens.
avatar: assets/authors/jane-smith.jpg
authors:
ljx:
name: Luojunxun
description: Creator
avatar: https://avatars.githubusercontent.com/u/932156
#url: https://github.com/squidfunk
32 changes: 0 additions & 32 deletions docs/index.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -686,49 +686,6 @@

</li>






















<li class="md-nav__item md-nav__item--pruned md-nav__item--nested">




<a href="../../fix/_navbar/" class="md-nav__link">


<span class="md-ellipsis">
Fix
</span>



<span class="md-nav__icon md-icon"></span>

</a>



</li>




Expand Down
47 changes: 2 additions & 45 deletions site/Notebook/DataStructure/表/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -780,49 +780,6 @@

</li>






















<li class="md-nav__item md-nav__item--pruned md-nav__item--nested">




<a href="../../fix/_navbar/" class="md-nav__link">


<span class="md-ellipsis">
Fix
</span>



<span class="md-nav__icon md-icon"></span>

</a>



</li>




Expand Down Expand Up @@ -953,14 +910,14 @@ <h3 id="_4">缺点</h3>
<img alt="note-cpp_array_2" src="../img/note-cpp_array_2.png" /></p>
<p>可以发现,数组元素都被初始化为 1,但是如果 index1-index2 两个地方的元素被修改,那么中间的元素也会被随机改变</p>
<h2 id="_5">链表:线性表的链式表示</h2>
<p><a href="./SinleList.h">单链表</a>
<p>单链表
<div class="highlight"><pre><span></span><code><span id="__span-0-1"><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a><span class="c1">//single node</span>
</span><span id="__span-0-2"><a id="__codelineno-0-2" name="__codelineno-0-2" href="#__codelineno-0-2"></a><span class="k">struct</span><span class="w"> </span><span class="nc">Node</span><span class="p">{</span>
</span><span id="__span-0-3"><a id="__codelineno-0-3" name="__codelineno-0-3" href="#__codelineno-0-3"></a><span class="w"> </span><span class="n">Comparable</span><span class="w"> </span><span class="n">value</span><span class="p">;</span>
</span><span id="__span-0-4"><a id="__codelineno-0-4" name="__codelineno-0-4" href="#__codelineno-0-4"></a><span class="w"> </span><span class="n">Node</span><span class="o">*</span><span class="w"> </span><span class="n">next</span><span class="p">;</span>
</span><span id="__span-0-5"><a id="__codelineno-0-5" name="__codelineno-0-5" href="#__codelineno-0-5"></a><span class="p">}</span>
</span></code></pre></div>
<a href="./DoubleList.h">双链表</a>
双链表
<div class="highlight"><pre><span></span><code><span id="__span-1-1"><a id="__codelineno-1-1" name="__codelineno-1-1" href="#__codelineno-1-1"></a><span class="c1">// double node</span>
</span><span id="__span-1-2"><a id="__codelineno-1-2" name="__codelineno-1-2" href="#__codelineno-1-2"></a><span class="k">struct</span><span class="w"> </span><span class="nc">Node</span><span class="p">{</span>
</span><span id="__span-1-3"><a id="__codelineno-1-3" name="__codelineno-1-3" href="#__codelineno-1-3"></a><span class="w"> </span><span class="n">Comparable</span><span class="w"> </span><span class="n">value</span><span class="p">;</span>
Expand Down
43 changes: 0 additions & 43 deletions site/Notebook/Mathmatical_Analysis/01-集合与映射/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -783,49 +783,6 @@

</li>






















<li class="md-nav__item md-nav__item--pruned md-nav__item--nested">




<a href="../../fix/_navbar/" class="md-nav__link">


<span class="md-ellipsis">
Fix
</span>



<span class="md-nav__icon md-icon"></span>

</a>



</li>




Expand Down
43 changes: 0 additions & 43 deletions site/Notebook/Mathmatical_Analysis/02-数列极限/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -783,49 +783,6 @@

</li>






















<li class="md-nav__item md-nav__item--pruned md-nav__item--nested">




<a href="../../fix/_navbar/" class="md-nav__link">


<span class="md-ellipsis">
Fix
</span>



<span class="md-nav__icon md-icon"></span>

</a>



</li>




Expand Down
43 changes: 0 additions & 43 deletions site/Notebook/Mathmatical_Analysis/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -728,49 +728,6 @@

</li>






















<li class="md-nav__item md-nav__item--pruned md-nav__item--nested">




<a href="../fix/_navbar/" class="md-nav__link">


<span class="md-ellipsis">
Fix
</span>



<span class="md-nav__icon md-icon"></span>

</a>



</li>




Expand Down
Loading

0 comments on commit b0b44be

Please sign in to comment.