在C++中,sort函數位于
#include <algorithm>
#include <iostream>
#include <vector>
#include <algorithm>
int main() {
std::vector<int> vec = {4, 2, 5, 1, 3};
// 使用sort函數對vector容器進行排序
std::sort(vec.begin(), vec.end());
// 打印排序后的結果
for (int num : vec) {
std::cout << num << " ";
}
return 0;
}
在上面的示例中,sort函數對vector容器中的元素進行升序排序。您還可以指定自定義的比較函數來實現不同的排序方式,例如降序排序:
// 自定義比較函數,實現降序排序
bool compare(int a, int b) {
return a > b;
}
int main() {
std::vector<int> vec = {4, 2, 5, 1, 3};
// 使用自定義比較函數對vector容器進行降序排序
std::sort(vec.begin(), vec.end(), compare);
// 打印排序后的結果
for (int num : vec) {
std::cout << num << " ";
}
return 0;
}
通過以上方法,您可以靈活地使用sort函數對容器內的元素進行排序。