set iterator
时间: 2023-08-28 07:16:19 浏览: 119
C++中的set容器
5星 · 资源好评率100%
在C++中,可以使用迭代器来遍历和操作集合(set)的元素。下面是一个示例:
```cpp
#include <iostream>
#include <set>
int main() {
std::set<int> mySet;
// 向集合中添加元素
mySet.insert(5);
mySet.insert(2);
mySet.insert(9);
mySet.insert(1);
// 使用迭代器遍历集合
std::cout << "Elements in the set: ";
for (auto it = mySet.begin(); it != mySet.end(); ++it) {
std::cout << *it << " ";
}
std::cout << std::endl;
return 0;
}
```
以上代码创建了一个整数类型的集合(set),并向其中插入了一些元素。然后使用迭代器遍历集合,并输出集合中的元素。
希望这个例子能帮到你!如果你有任何其他问题,请随时提问。
阅读全文