在C++中,std::set
是一个关联容器,它包含一组唯一的对象
下面是如何在C++中使用std::set
的一些基本示例:
#include <iostream>
#include <set>
std::set
对象并插入元素:std::set<int> my_set;
my_set.insert(5);
my_set.insert(3);
my_set.insert(7);
my_set.insert(1);
注意,std::set
会自动删除重复的元素。在这个例子中,数字1已经存在,所以它不会被插入。
auto it = my_set.find(3);
if (it != my_set.end()) {
std::cout << "Found: " << *it << std::endl;
} else {
std::cout << "Not found" << std::endl;
}
std::set
:for (const auto& element : my_set) {
std::cout << element << " ";
}
std::cout << std::endl;
这将输出:1 3 5 7
my_set.erase(3);
现在,my_set
包含1, 5, 7
。
if (my_set.count(5)) {
std::cout << "5 is in the set" << std::endl;
} else {
std::cout << "5 is not in the set" << std::endl;
}
这将输出:5 is in the set
这只是std::set
的基本用法。您还可以使用其他成员函数(如size()
、clear()
等)来操作std::set
。要了解更多关于std::set
的信息,请参阅C++标准库文档。