c++中set容器怎么使用

c++
651
2024/3/7 16:23:58
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在C++中,set容器是一个有序的容器,其中的元素是唯一的,不允许重复。

使用set容器需要包含头文件,然后可以按照以下步骤使用set容器:

  1. 创建set容器:
#include <set>
std::set<int> mySet;
  1. 插入元素到set容器中:
mySet.insert(10);
mySet.insert(20);
mySet.insert(30);
  1. 遍历set容器中的元素:
for(auto it = mySet.begin(); it != mySet.end(); ++it) {
    std::cout << *it << " ";
}
  1. 查找元素是否存在于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;
}
  1. 删除元素:
mySet.erase(20);

以上是set容器的基本使用方法,可以根据具体情况进行扩展和修改。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: C++中tinyxml的用法是什么