Files
python/GESP/资料/四级.txt
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

26 lines
612 B
Plaintext

选择排序不是稳定的排序算法
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