Skip to content

Commit 2c62d10

Browse files
committed
[docs add]十大排序算法总结
1 parent feca67f commit 2c62d10

7 files changed

+783
-7
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ JVM 这部分内容主要参考 [JVM 虚拟机规范-Java8 ](https://docs.oracle
153153
* [几道常见的字符串算法题总结 ](docs/cs-basics/algorithms/string-algorithm-problems.md)
154154
* [几道常见的链表算法题总结 ](docs/cs-basics/algorithms/linkedlist-algorithm-problems.md)
155155
* [剑指 offer 部分编程题](docs/cs-basics/algorithms/the-sword-refers-to-offer.md)
156+
* [十大经典排序算法](docs/cs-basics/algorithms/10-classical-sorting-algorithms.md)
156157

157158
另外,[GeeksforGeeks]( https://www.geeksforgeeks.org/fundamentals-of-algorithms/) 这个网站总结了常见的算法 ,比较全面系统。
158159

docs/.vuepress/sidebar.ts

+1
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,7 @@ export const sidebarConfig = defineSidebarConfig({
253253
"string-algorithm-problems",
254254
"linkedlist-algorithm-problems",
255255
"the-sword-refers-to-offer",
256+
"10-classical-sorting-algorithms",
256257
],
257258
},
258259
],

docs/.vuepress/themeConfig.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,7 @@ export default defineThemeConfig({
3333
autoExcerpt: true,
3434
},
3535
mdEnhance: {
36-
enableAll: true,
37-
presentation: {
38-
plugins: ["highlight", "math", "search", "notes", "zoom"],
39-
},
36+
tasklist: true,
4037
},
4138
feed: {
4239
json: true,

docs/cs-basics/algorithms/10-classical-sorting-algorithms.md

+762
Large diffs are not rendered by default.

docs/cs-basics/algorithms/linkedlist-algorithm-problems.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
# 几道常见的链表算法题
1+
---
2+
title: 几道常见的链表算法题
3+
category: 计算机基础
4+
tag:
5+
- 算法
6+
---
27

38
## 1. 两数相加
49

docs/cs-basics/algorithms/string-algorithm-problems.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
# 几道常见的字符串算法题
1+
---
2+
title: 几道常见的字符串算法题
3+
category: 计算机基础
4+
tag:
5+
- 算法
6+
---
27

38
> 授权转载!
49
>

docs/cs-basics/algorithms/the-sword-refers-to-offer.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
# 剑指offer部分编程题
1+
---
2+
title: 剑指offer部分编程题
3+
category: 计算机基础
4+
tag:
5+
- 算法
6+
---
27

38
## 斐波那契数列
49

0 commit comments

Comments
 (0)