Skip to content

Commit 0232c9e

Browse files
committed
笔记归档
1 parent ccd084b commit 0232c9e

4 files changed

Lines changed: 23 additions & 33 deletions

File tree

README.md

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,9 @@
22

33
> 本项目用于归档本人的各种笔记。
44
5-
<!-- TOC -->
6-
7-
- [Notes](#notes)
8-
- [编程语言](#编程语言)
9-
- [算法](#算法)
10-
- [数据库](#数据库)
11-
- [网络](#网络)
12-
- [操作系统](#操作系统)
13-
- [Web](#web)
14-
- [前端](#前端)
15-
- [大数据](#大数据)
16-
- [设计](#设计)
17-
- [软件工程](#软件工程)
18-
19-
<!-- /TOC -->
20-
21-
| :coffee: | :slot_machine: | :package: | :spider_web: | :computer: | :globe_with_meridians: | :art: | :cloud: | :bulb: | :building_construction: |
22-
| :---------------------: | :--------------: | :-----------------: | :-------------: | :---------------------: | :----------------------: | :-------------: | :-----------------: | :-------------: | :-----------------------: |
23-
| [编程语言](#编程语言) | [算法](#算法) | [数据库](#数据库) | [网络](#网络) | [操作系统](#操作系统) | [Web](#web) | [前端](#前端) | [大数据](#大数据) | [设计](#设计) | [软件工程](#软件工程) |
5+
| :coffee: | :slot_machine: | :package: | :spider_web: | :computer: | :globe_with_meridians: | :art: | :cloud: | :bulb: | :building_construction: |
6+
| :-------------------: | :------------: | :---------------: | :-----------: | :-------------------: | :--------------------: | :-----------: | :---------------: | :-----------: | :---------------------: |
7+
| [编程语言](#编程语言) | [算法](#算法) | [数据库](#数据库) | [网络](#网络) | [操作系统](#操作系统) | [Web](#web) | [前端](#前端) | [大数据](#大数据) | [设计](#设计) | [软件工程](#软件工程) |
248

259
## 编程语言
2610

algorithm/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
- [](data-structure/stack.md)
1212
- [队列](data-structure/queue.md)
1313
- [链表](data-structure/list.md)
14-
- [](data-structure/tree)
14+
- [](data-structure/tree) - [](data-structure/tree/tree.md)[二叉树](data-structure/tree/binary-tree.md)[红黑树](data-structure/tree/red-black-tree.md)
1515
- [](data-structure/graph.md)
1616
- [](data-structure/heap.md)
1717
- [散列表](data-structure/hash.md)
1818
- **结构算法**
1919
- [查找](data-structure/search)
20-
- [排序](data-structure/sort)
20+
- [排序](data-structure/sort) - [冒泡排序](data-structure/sort/bubble-sort.md)[快速排序](data-structure/sort/quick-sort.md)[直接插入排序](data-structure/sort/insert-sort.md)[希尔排序](data-structure/sort/shell-sort.md)[简单选择排序](data-structure/sort/selection-sort.md)[堆排序](data-structure/sort/heap-sort.md)[归并排序](data-structure/sort/merge-sort.md)[基数排序](data-structure/sort/radix-sort.md)
2121

2222
## 学习资源
2323

algorithm/data-structure/README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## 数据结构
2+
3+
> `数据结构` 是指相互之间存在着一种或多种关系的数据元素的集合和该集合中数据元素之间的关系组成。
4+
>
5+
> 记为:`Data_Structure=(D,R)`。其中 D 是数据元素的集合,R 是该集合中所有元素之间的关系的有限集合。
6+
7+
- **常用结构**
8+
- [数组](array.md)
9+
- [](stack.md)
10+
- [队列](queue.md)
11+
- [链表](list.md)
12+
- [](tree) - [](tree/tree.md)[二叉树](tree/binary-tree.md)[红黑树](tree/red-black-tree.md)
13+
- [](graph.md)
14+
- [](heap.md)
15+
- [散列表](hash.md)
16+
- **结构算法**
17+
- [查找](search)
18+
- [排序](sort) - [冒泡排序](sort/bubble-sort.md)[快速排序](sort/quick-sort.md)[直接插入排序](sort/insert-sort.md)[希尔排序](sort/shell-sort.md)[简单选择排序](sort/selection-sort.md)[堆排序](sort/heap-sort.md)[归并排序](sort/merge-sort.md)[基数排序](sort/radix-sort.md)

algorithm/data-structure/sort/README.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)