c++ 中的 set 如何判断元素是否存在

c++
838
2024/11/29 12:22:47
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在 C++ 的 set 容器中,你可以使用 find() 成员函数来判断一个元素是否已经存在。如果 find() 返回的迭代器等于 setend() 迭代器,那么说明该元素不存在;否则,该元素存在于 set 中。

以下是一个示例代码:

#include <iostream>
#include <set>
using namespace std;

int main() {
    set<int> my_set = {1, 2, 3, 4, 5};

    int target = 6;
    if (my_set.find(target) == my_set.end()) {
        cout << target << " is not in the set." << endl;
    } else {
        cout << target << " is in the set." << endl;
    }

    return 0;
}

在这个示例中,我们创建了一个包含整数的 set,然后使用 find() 函数查找一个不存在的元素 6。因为 6 不在 set 中,所以 find() 返回的迭代器等于 setend() 迭代器,我们输出 “6 is not in the set.”。

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

推荐阅读: c++中memset函数的用法是什么