在 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
。然后,我們使用迭代器或范圍循環遍歷集合中的每個元素,并將其打印到控制臺。