We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4409a6 commit 190f247Copy full SHA for 190f247
README.md
@@ -1,4 +1,11 @@
1
-## go-algorithm
+# go-algorithm
2
3
## Features
4
-- [x] Bubble Sort
+- [x] Bubble Sort
5
+
6
+## 概述
7
8
+排序算法是《数据结构与算法》中最基本的算法之一。
9
+排序算法可以分为内部排序和外部排序,内部排序是数据记录在内存中进行排序,而外部排序是因排序的数据很大,一次不能容纳全部的排序记录,在排序过程中需要访问外存。常见的内部排序算法有:__插入排序__、__希尔排序__、__选择排序__、__冒泡排序__、__归并排序__、__快速排序__、__堆排序__、__基数排序__ 等。用一张图概括:
10
11
+
0 commit comments