快排不稳定,如221,第一个2会和1交换

This commit is contained in:
wangxujian-laixuzhui 2018-08-21 18:29:57 +08:00 committed by GitHub
parent 56a271b433
commit cd354fb46c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -770,7 +770,7 @@ public class HeapSort<T extends Comparable<T>> extends Sort<T> {
| 算法 | 稳定 | 时间复杂度 | 空间复杂度 | 备注 |
| :---: | :---: |:---: | :---: | :---: |
| 选择排序 | | N<sup>2</sup> | 1 | |
| 选择排序 | ×| N<sup>2</sup> | 1 | |
| 冒泡排序 | √ | N<sup>2</sup> | 1 | |
| 插入排序 | √ | N \~ N<sup>2</sup> | 1 | 时间复杂度和初始顺序有关 |
| 希尔排序 | × | N 的若干倍乘于递增序列的长度 | 1 | |