在C++中,可以使用std::sort
和std::greater
來實現逆序排序。std::sort
默認是按升序排序的,但是可以通過使用std::greater
函數對象來實現降序排序。
以下是一個示例代碼:
#include <iostream>
#include <algorithm>
#include <vector>
int main() {
std::vector<int> numbers = {5, 2, 8, 4, 1};
// 使用 std::greater<int>() 作為比較函數,實現降序排序
std::sort(numbers.begin(), numbers.end(), std::greater<int>());
// 輸出排序后的結果
for (int num : numbers) {
std::cout << num << " ";
}
return 0;
}
在這個示例中,我們使用std::sort
對numbers
進行降序排序,并使用std::greater<int>()
作為比較函數。排序后的結果將會是:8 5 4 2 1。