You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
612 B

选择排序不是稳定的排序算法
https://blog.csdn.net/weixin_39644325/article/details/111584150
数组 6、7、6、2、8
不稳定排序算法有哪些
https://blog.csdn.net/Maxiao1204/article/details/108907709
不稳定排序算法有哪些
口诀:一堆(堆)希尔(希尔)快(快速)选(选择)
======================================================
桶排不讨论是不是稳定
桶排的例子
6 7 6 2 8
int a[10]={};
1 2 1 1
1 2 3 4 5 6 7 8
2 6 6 7 8
C++ 运算符
https://www.runoob.com/cplusplus/cpp-operators.html