c++ stl 之 set

#include <iostream>
#include <set>

int main() {
    // 创建一个空的 set
    std::set<int> mySet;

    // 向 set 中插入元素
    mySet.insert(10);
    mySet.insert(20);
    mySet.insert(30);

    // 检查 set 中是否包含特定元素
    if (mySet.find(20) != mySet.end()) {
        std::cout << "Element 20 is in the set" << std::endl;
    } else {
        std::cout << "Element 20 is not in the set" << std::endl;
    }

    // 遍历 set 并打印元素
    std::cout << "Set elements:";
    for (auto it = mySet.begin(); it != mySet.end(); ++it) {
        std::cout << " " << *it;
    }
    std::cout << std::endl;

    // 删除 set 中的特定元素
    mySet.erase(20);

    // 打印 set 的大小
    std::cout << "Set size after erasing: " << mySet.size() << std::endl;

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值