sort vs qsort
sort 是C++实现,在algorithm头文件中,它是智能排序,如果快排效率不高的话,会使用其他的排序方法。
qsort是C的快排实现。
参考文献
1.https://www.geeksforgeeks.org/c-qsort-vs-c-sort/
2.https://martin-ueding.de/articles/qsort-vs-std-sort/index.html
3.https://www.tutorialspoint.com/c-qsort-vs-cplusplus-sort