在C++中,要對std::set
進行逆序排列,您需要使用std::greater<>
作為比較函數對象。std::greater<>
是一個函數對象,它表示“小于”的比較,這會導致std::set
按照降序(逆序)方式排序元素。
以下是一個簡單的示例:
#include <iostream>
#include <set>
#include <vector>
int main() {
// 使用 std::greater<> 作為比較函數對象
std::set<int, std::greater<int>> my_set = {5, 1, 4, 3, 2};
// 輸出逆序排列的集合
for (const auto& element : my_set) {
std::cout << element << " ";
}
return 0;
}
在這個示例中,我們創建了一個包含整數的std::set
,并使用std::greater<>
作為比較函數對象。這將導致集合按照逆序排列。輸出將是:5 4 3 2 1
。