在 C++ 中,你可以使用迭代器(iterator)或者范圍循環(range-based for loop)來遍歷 std::set
。下面是兩種方法的示例:
#include <iostream>
#include <set>
int main() {
std::set<int> my_set = {1, 2, 3, 4, 5};
// 使用迭代器遍歷 set
for (std::set<int>::iterator it = my_set.begin(); it != my_set.end(); ++it) {
std::cout << *it << " ";
}
return 0;
}
#include <iostream>
#include <set>
int main() {
std::set<int> my_set = {1, 2, 3, 4, 5};
// 使用范圍循環遍歷 set
for (const auto &element : my_set) {
std::cout << element << " ";
}
return 0;
}
在這兩個示例中,我們都創建了一個包含整數的 std::set
,并使用不同的方法遍歷它。注意,std::set
中的元素默認是按升序排列的。