Skip to content

Commit 190f247

Browse files
committed
introduction updated
1 parent f4409a6 commit 190f247

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
## go-algorithm
1+
# go-algorithm
22

33
## Features
4-
- [x] Bubble Sort
4+
- [x] Bubble Sort
5+
6+
## 概述
7+
8+
排序算法是《数据结构与算法》中最基本的算法之一。
9+
排序算法可以分为内部排序和外部排序,内部排序是数据记录在内存中进行排序,而外部排序是因排序的数据很大,一次不能容纳全部的排序记录,在排序过程中需要访问外存。常见的内部排序算法有:__插入排序____希尔排序____选择排序____冒泡排序____归并排序____快速排序____堆排序____基数排序__ 等。用一张图概括:
10+
11+
![image](https://user-images.githubusercontent.com/5203608/97692300-92062100-1ada-11eb-9f92-96f923303929.png)

0 commit comments

Comments
 (0)