在C++中,stable_sort函数用于对容器中的元素进行稳定排序。稳定排序意味着相等元素的相对位置在排序前后不改变。
以下是如何正确使用stable_sort函数的步骤:
#include <algorithm>
bool comparisonFunction(const T& a, const T& b) {
return a < b;
}
std::vector<int> vec = {5, 2, 8, 3, 1};
std::stable_sort(vec.begin(), vec.end());
// 或者使用自定义的比较函数
std::stable_sort(vec.begin(), vec.end(), comparisonFunction);
通过以上步骤,就可以正确地使用C++的stable_sort函数对容器进行稳定排序。