Remove the file headers from the docs.

This commit is contained in:
krahets
2023-02-26 02:19:40 +08:00
parent 2b33f7bc5f
commit b25aadae6f
44 changed files with 0 additions and 176 deletions

View File

@@ -1,7 +1,3 @@
---
comments: true
---
# 冒泡排序
「冒泡排序 Bubble Sort」是一种最基础的排序算法非常适合作为第一个学习的排序算法。顾名思义「冒泡」是该算法的核心操作。

View File

@@ -1,7 +1,3 @@
---
comments: true
---
# 插入排序
「插入排序 Insertion Sort」是一种基于 **数组插入操作** 的排序算法。

View File

@@ -1,7 +1,3 @@
---
comments: true
---
# 排序简介
「排序算法 Sorting Algorithm」使得列表中的所有元素按照从小到大的顺序排列。

View File

@@ -1,7 +1,3 @@
---
comments: true
---
# 归并排序
「归并排序 Merge Sort」是算法中“分治思想”的典型体现其有「划分」和「合并」两个阶段

View File

@@ -1,7 +1,3 @@
---
comments: true
---
# 快速排序
「快速排序 Quick Sort」是一种基于“分治思想”的排序算法速度很快、应用很广。

View File

@@ -1,6 +1,2 @@
---
comments: true
---
# 小结