栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

multiset

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

multiset

#include 
using namespace std;
struct cmp {
    bool operator() (int a, int b) {
        return a > b;
    }
};
int main() {
 
    // 1、初始化
    multiset s1;
    multiset s2; // 自定义排序
 
    // 2、添加元素
    for (int i = 0; i < 5; i++) {
        s1.insert(i);
        s2.insert(i);
    }
    
    // 3、输出第一个元素
    cout << *s1.begin() << endl;

    // 4、输出最后一个元素
    cout << *s1.rbegin() << endl;

    // 5、遍历
    multiset::iterator it;
    for (it = s1.begin(); it != s1.end(); it++) {
        cout << *it << endl;
    }
 
    // 6、是否存在其元素
    cout << ((s1.find(2) == s1.end()) ? "NO" : "YES") << endl;
 
    // 7、二分到左边
    cout << *s1.lower_bound(6) << endl;
 
    // 8、二分到右边
    cout << *s1.upper_bound(3) << endl;
 
    // 9、计数
    s1.insert(2);
    s1.insert(2);
    cout << s1.count(2) << endl;
 
    // 10、删除一个2
    s1.erase(s1.find(2));
    cout << s1.count(2) << endl;
 
    // 11、删除所有2
    s1.erase(2);
    cout << s1.count(2) << endl;
 
    // 12、清空
    s1.clear();
 
    // 13、判空
    cout << s1.empty() << endl;
    return 0;
}

输出:

0
4
0
1
2
3
4
YES
5
4
3
2
0
1

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/311888.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号