在C++中,可以使用迭代器或者范圍循環來遍歷Set。
#include <iostream>
#include <set>
int main() {
std::set<int> mySet = {1, 2, 3, 4, 5};
// 使用迭代器遍歷Set
std::set<int>::iterator it;
for (it = mySet.begin(); it != mySet.end(); ++it) {
std::cout << *it << " ";
}
return 0;
}
#include <iostream>
#include <set>
int main() {
std::set<int> mySet = {1, 2, 3, 4, 5};
// 使用范圍循環遍歷Set
for (const int& element : mySet) {
std::cout << element << " ";
}
return 0;
}
無論使用哪種方法,都可以遍歷Set中的元素。