Skip to content

Commit a36a241

Browse files
committed
更新文档
1 parent 780ff30 commit a36a241

File tree

9 files changed

+81
-7
lines changed

9 files changed

+81
-7
lines changed

docs/.nojekyll

Whitespace-only changes.

docs/README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,21 @@ tags: ['hide']
1414
>
1515
> 记为:`Data_Structure=(D,R)`。其中 D 是数据元素的集合,R 是该集合中所有元素之间的关系的有限集合。
1616
17-
- **常用结构**
17+
- **:one: 数据结构**
1818
- [数组](data-structure/array.md)
1919
- [](data-structure/stack.md)
2020
- [队列](data-structure/queue.md)
2121
- [链表](data-structure/list.md)
22-
- [](data-structure/tree) - [](data-structure/tree/tree.md)[二叉树](data-structure/tree/binary-tree.md)[红黑树](data-structure/tree/red-black-tree.md)
22+
- [](data-structure/tree)
23+
- [](data-structure/tree/tree.md)
24+
- [二叉树](data-structure/tree/binary-tree.md)
25+
- [红黑树](data-structure/tree/red-black-tree.md)
2326
- [](data-structure/graph.md)
2427
- [](data-structure/heap.md)
2528
- [散列表](data-structure/hash.md)
26-
- **结构算法**
27-
- [查找](data-structure/search)
28-
- [排序](data-structure/sort) - [冒泡排序](data-structure/sort/bubble-sort.md)[快速排序](data-structure/sort/quick-sort.md)[直接插入排序](data-structure/sort/insert-sort.md)[希尔排序](data-structure/sort/shell-sort.md)[简单选择排序](data-structure/sort/selection-sort.md)[堆排序](data-structure/sort/heap-sort.md)[归并排序](data-structure/sort/merge-sort.md)[基数排序](data-structure/sort/radix-sort.md)
29+
- **:two: 算法**
30+
- [查找算法](algorithm/search)
31+
- [排序算法](algorithm/sort.md)
2932

3033
## :books: 学习资源
3134

@@ -89,4 +92,4 @@ tags: ['hide']
8992

9093
## :door: 传送门
9194

92-
| [回首頁](https://github.com/dunwu/blog) |
95+
| [技术文档归档](https://github.com/dunwu/blog) | [算法和数据结构教程系列](https://github.com/dunwu/algorithm-tutorial) |
File renamed without changes.
File renamed without changes.

docs/data-structure/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ tags: ['hide']
1818
- [](heap.md)
1919
- [散列表](hash.md)
2020
- **结构算法**
21-
- [查找](search)
21+
- [查找](../algorithm/search)
2222
- [排序](sort) - [冒泡排序](sort/bubble-sort.md)[快速排序](sort/quick-sort.md)[直接插入排序](sort/insert-sort.md)[希尔排序](sort/shell-sort.md)[简单选择排序](sort/selection-sort.md)[堆排序](sort/heap-sort.md)[归并排序](sort/merge-sort.md)[基数排序](sort/radix-sort.md)

docs/data-structure/tree/navbar.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- [](tree.md)
2+
- [二叉树](binary-tree.md)
3+
- [红黑树](red-black-tree.md)

docs/index.html

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>algorithm-tutorial</title>
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7+
<meta name="description" content="算法和数据结构教程" />
8+
<meta
9+
name="viewport"
10+
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
11+
/>
12+
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css" title="vue" />
13+
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/dark.css" title="dark" disabled />
14+
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/buble.css" title="buble" disabled />
15+
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/pure.css" title="pure" disabled />
16+
<style>
17+
nav.app-nav li ul {
18+
min-width: 100px;
19+
}
20+
</style>
21+
</head>
22+
<body>
23+
<div id="app">正在加载...</div>
24+
<script>
25+
window.$docsify = {
26+
auto2top: true,
27+
loadNavbar: "navbar.md",
28+
name: "算法和数据结构教程",
29+
repo: "https://github.com/dunwu/algorithm-tutorial",
30+
maxLevel: 4,
31+
subMaxLevel: 4,
32+
formatUpdated: "{MM}/{DD} {HH}:{mm}",
33+
pagination: {
34+
previousText: "上一章节",
35+
nextText: "下一章节",
36+
crossChapter: true
37+
}
38+
// coverpage: true,
39+
// 完整配置参数
40+
};
41+
</script>
42+
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
43+
<script src="//unpkg.com/docsify/lib/plugins/emoji.js"></script>
44+
<script src="//unpkg.com/docsify/lib/plugins/zoom-image.js"></script>
45+
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
46+
47+
<!--代码高亮-->
48+
<script src="//unpkg.com/prismjs/components/prism-bash.min.js"></script>
49+
<script src="//unpkg.com/prismjs/components/prism-java.min.js"></script>
50+
<script src="//unpkg.com/prismjs/components/prism-markdown.min.js"></script>
51+
<script src="//unpkg.com/prismjs/components/prism-nginx.min.js"></script>
52+
</body>
53+
</html>

docs/navbar.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
- **:one: 数据结构**
2+
- [数组](data-structure/array.md)
3+
- [](data-structure/stack.md)
4+
- [队列](data-structure/queue.md)
5+
- [链表](data-structure/list.md)
6+
- [](data-structure/tree)
7+
- [](data-structure/tree/tree.md)
8+
- [二叉树](data-structure/tree/binary-tree.md)
9+
- [红黑树](data-structure/tree/red-black-tree.md)
10+
- [](data-structure/graph.md)
11+
- [](data-structure/heap.md)
12+
- [散列表](data-structure/hash.md)
13+
- **:two: 算法**
14+
- [查找算法](algorithm/search)
15+
- [排序算法](algorithm/sort.md)

0 commit comments

Comments
 (0)