在C++中,可以使用std::sort
函數和自定義的比較函數來實現降序排序。以下是一個示例代碼:
#include <iostream>
#include <algorithm>
#include <vector>
bool compare(int a, int b) {
return a > b; // 降序排序
}
int main() {
std::vector<int> vec = {4, 2, 7, 5, 1};
std::sort(vec.begin(), vec.end(), compare);
for (int i : vec) {
std::cout << i << " ";
}
return 0;
}
在上面的代碼中,定義了一個名為compare
的比較函數,該函數返回a > b
,表示降序排序。然后在std::sort
函數中傳入這個比較函數,在對vec
進行排序時就會按照降序的方式進行。