c++ set 遍历
时间: 2024-03-16 13:39:11 浏览: 193
C++中关于set删除的一些坑
5星 · 资源好评率100%
C++中的set是一种有序的容器,它存储唯一的元素,并按照升序进行排序。要遍历set,可以使用迭代器或范围循环。
使用迭代器遍历set的示例代码如下:
```cpp
#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;
}
```
使用范围循环遍历set的示例代码如下:
```cpp
#include <iostream>
#include <set>
int main() {
std::set<int> mySet = {1, 2, 3, 4, 5};
// 使用范围循环遍历set
for (const auto& element : mySet) {
std::cout << element << " ";
}
return 0;
}
```
阅读全文