c++的stdlib.h里的qsort函数是不是稳定排序?

还有sort函数是什么排序?
2024-12-26 09:44:29
推荐回答(2个)
回答1:

qsort是快速排序,不是稳定排序

回答2:

sort是C++的。qsort是C语言里的快速排序。