set

#include <bits/stdc++.h>
using namespace std;

int main ()
{

    set <int> s1;   // set : 相同的两个元素只能存入一个, multiset 可以存重复元素
    set <int, greater<int>> s2;  //降序

    multiset <int> s3;   // 默认升序;  
    multiset <int, greater<int>> s4;  // 降序
    
    // set 两种遍历方式
    // auto it = s.find(x);
    // cout << *it << endl;
    // for (auto it = s.begin(); it != s.end(); it ++) cout << *it << endl;
    // for (int x : s) cout << x << endl;

    // 插入:
    // s1.insert (x); set会自动去重排序(logN), multiset 不会去重, 会排序
    // 查找:
    // s1.find(x);  有返回对应迭代器, 需要输出*it,multiset 返回第一个出现的迭代器 没有则返回s1.end();
    // s3.count(x) 返回multiset 中 x出现的次数, 没有返回0;
    // s1.empty()   1-空  0-不空

    // 删除:
    // (1)s1.erase(x) or s1.erase(s1.find(x)) 删除 等于x的所有元素
    // (2)s1.erase(s1.begin(), s1.end()) 
    //  (3) s1.erase(s1.find(200), s1.end()) 删除两迭代器之间所有元素

    // 清空 s1.clear();
    
    // 交换 s1.swap(s2);


}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值