阅读量:0
在C++中,set
是一个关联容器,它包含一组唯一的对象。每个元素在插入时自动按键(key)排序。键值不能修改,因为它们是唯一标识元素的。set
中的元素从小到大排序。
下面是一个简单的示例,展示了如何在C++中使用set
集合:
#include<iostream> #include <set> int main() { // 创建一个空的 set 集合 std::set<int> my_set; // 向 set 中插入元素 my_set.insert(5); my_set.insert(1); my_set.insert(9); my_set.insert(3); my_set.insert(5); // 重复插入,不会有任何效果 // 遍历并打印 set 中的元素 for (const auto &element : my_set) { std::cout<< element << " "; } std::cout<< std::endl; // 检查某个元素是否存在于 set 中 if (my_set.find(5) != my_set.end()) { std::cout << "5 is in the set"<< std::endl; } else { std::cout << "5 is not in the set"<< std::endl; } // 删除 set 中的某个元素 my_set.erase(1); // 再次遍历并打印 set 中的元素 for (const auto &element : my_set) { std::cout<< element << " "; } std::cout<< std::endl; return 0; }
这个示例展示了如何创建一个空的set
集合,向其中插入元素,遍历并打印集合中的元素,检查某个元素是否存在于集合中,以及删除集合中的某个元素。