-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.md
More file actions
30 lines (20 loc) · 1.09 KB
/
README.md
File metadata and controls
30 lines (20 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
## 介绍
数据结构是计算机程序设计的基础,告诉我们数据在计算机里是如何组织与存储的,能帮助我们刻画实际问题中的信息及其相互关系。当我们对一个实际问题本身有了一个结构化的认识之后,就可以选择合适的解决方法(算法)了。

在线阅读:[https://oldbird.run/algorithms](https://oldbird.run/algorithms)
关注官方公众号 **OldBirds**
<img src="http://blog.oldbird.run/mweb/wechat-logo.png" width="420" />
**站点**:[https://oldbird.run](https://oldbird.run)
## 规划
- [x] 十大经典排序算法
- [x] [冒泡排序](t1-buble-sort)
- [x] [选择排序](t2-selection-sort)
- [x] [插入排序](t3-insertion-sort)
- [x] [希尔排序](t4-shell-sort)
- [x] [快速排序](t5-quick-sort)
- [x] [堆排序](t6-heap-sort)
- [x] [归并排序](t7-merge-sort)
- [x] [基数排序](t8-radix-sort)
- [x] [计数排序](t9-count-sort)
- [x] [桶排序](u1-bucket-sort)
