提交 47664429 编写于 作者: 片刻小哥哥's avatar 片刻小哥哥

修改目录结构

上级 d70433e1
......@@ -3,9 +3,14 @@
* 英文官网: https://leetcode.com
* 中文官网: https://leetcode-cn.com
## 1. [LeetCode 题解和总结](/docs/Leetcode_Solutions/Python)
## 1.LeetCode 习题集合
## 2. [算法模版](/docs/Algorithm_Templates/Python)
* [LeetCode 习题集合](/docs/Leetcode_Solutions)
## 2.算法 集合
* [算法 集合](/docs/Algorithm)
* [八大排序算法 集合](/docs/Algorithm/Sort)
## 推荐的一些LeetCode网站
......
# Some algorithm templates for better understanding!
## 八大排序算法
![](/images/SortingAlgorithm/八大排序算法性能.png)
| 名称 | 动图 | 代码 |
| --- | --- | --- |
| 冒泡排序 | ![](/images/SortingAlgorithm/冒泡排序.gif) | [BubbleSort.py](https://github.com/apachecn/LeetCode/blob/master/docs/Algorithm_Templates/Sort/BubbleSort.py) |
| 插入排序 | ![](/images/SortingAlgorithm/直接插入排序.gif) | [InsertSort.py](https://github.com/apachecn/LeetCode/blob/master/docs/Algorithm_Templates/Sort/InsertSort.py) |
| 选择排序 | ![](/images/SortingAlgorithm/简单选择排序.gif) | [SelectionSort.py](https://github.com/apachecn/LeetCode/blob/master/docs/Algorithm_Templates/Sort/SelectionSort.py) |
| 快速排序 | ![](/images/SortingAlgorithm/快速排序.gif) | [QuickSort.py](https://github.com/apachecn/LeetCode/blob/master/docs/Algorithm_Templates/Sort/QuickSort.py) |
| 希尔排序 | ![](/images/SortingAlgorithm/希尔排序.png) | [ShellSort.py](https://github.com/apachecn/LeetCode/blob/master/docs/Algorithm_Templates/Sort/ShellSort.py) |
| 归并排序 | ![](/images/SortingAlgorithm/归并排序.gif) | [MergeSort.py](https://github.com/apachecn/LeetCode/blob/master/docs/Algorithm_Templates/Sort/MergeSort.py) |
| 基数排序 | ![](/images/SortingAlgorithm/基数排序.gif) | [RadixSort.py](https://github.com/apachecn/LeetCode/blob/master/docs/Algorithm_Templates/Sort/RadixSort.py) |
# Some algorithm templates for better understanding!
> [八大排序算法 集合](/docs/Algorithm/Sort)
![](/images/SortingAlgorithm/八大排序算法性能.png)
# Some algorithm templates for better understanding!
## 八大排序算法
# 八大排序算法
![](/images/SortingAlgorithm/八大排序算法性能.png)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册