在C++中,sort是一個標(biāo)準(zhǔn)庫函數(shù),用于對容器或者數(shù)組進行排序。它的用法如下:
#include <algorithm>
#include <vector>
int main() {
std::vector<int> vec = {5, 2, 8, 4, 1};
std::sort(vec.begin(), vec.end()); // 默認(rèn)升序排序
return 0;
}
#include <algorithm>
int main() {
int arr[] = {5, 2, 8, 4, 1};
int n = sizeof(arr) / sizeof(arr[0]);
std::sort(arr, arr + n); // 默認(rèn)升序排序
return 0;
}
#include <algorithm>
#include <vector>
bool compare(int a, int b) {
return a > b; // 降序排序
}
int main() {
std::vector<int> vec = {5, 2, 8, 4, 1};
std::sort(vec.begin(), vec.end(), compare);
return 0;
}
sort函數(shù)默認(rèn)使用 <
運算符進行比較,如果要進行降序排序,可以自定義一個比較函數(shù),并將其作為第三個參數(shù)傳遞給sort函數(shù)。