在C++中,set容器是一个有序的容器,其中的元素是唯一的,不允许重复。
使用set容器需要包含头文件
#include <set>
std::set<int> mySet;
mySet.insert(10);
mySet.insert(20);
mySet.insert(30);
for(auto it = mySet.begin(); it != mySet.end(); ++it) {
std::cout << *it << " ";
}
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容器的基本使用方法,可以根据具体情况进行扩展和修改。