在C++中,std::set是一個有序的容器,它可以被用在容器嵌套中。當std::set被嵌套在另一個容器中時,它會保持其元素的唯一性和有序性。
以下是一個示例代碼,展示了如何在容器嵌套中使用std::set:
#include <iostream>
#include <set>
#include <vector>
int main() {
std::set<int> set1 = {3, 1, 4, 1, 5, 9};
std::set<int> set2 = {2, 7, 1, 8};
std::vector<std::set<int>> nestedSet;
nestedSet.push_back(set1);
nestedSet.push_back(set2);
for (const auto& set : nestedSet) {
for (const auto& elem : set) {
std::cout << elem << " ";
}
std::cout << std::endl;
}
return 0;
}
在這個例子中,我們創建了兩個std::set set1和set2,并將它們嵌套在一個std::vector中。然后我們遍歷這個嵌套的容器,并打印每個set中的元素。
輸出結果將會是:
1 3 4 5 9
1 2 7 8
可以看到,每個set中的元素是唯一的且有序的。這展示了std::set在容器嵌套中的表現。