阅读量:0
在C++中,set容器是一个有序的容器,其中的元素是唯一的,不允许重复。
使用set容器需要包含头文件
- 创建set容器:
#include <set> std::set<int> mySet;
- 插入元素到set容器中:
mySet.insert(10); mySet.insert(20); mySet.insert(30);
- 遍历set容器中的元素:
for(auto it = mySet.begin(); it != mySet.end(); ++it) { std::cout << *it << " "; }
- 查找元素是否存在于set容器中:
if(mySet.find(10) != mySet.end()) { std::cout << "Element found in set" << std::endl; } else { std::cout << "Element not found in set" << std::endl; }
- 删除元素:
mySet.erase(20);
以上是set容器的基本使用方法,可以根据具体情况进行扩展和修改。