set练习

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

int main()
{
    set<int>jihe;
    jihe.insert(5);
    jihe.insert(2);
    jihe.insert(1);
    jihe.insert(4);
    jihe.insert(3);
    for(set<int>::iterator a=jihe.begin();a!=jihe.end();a++)
    {
        cout<<(*a)<<endl;
    }

    set<int>::iterator b;
    b=jihe.end();//奇怪
    jihe.erase(b);

    for(set<int>::iterator d=jihe.begin();d!=jihe.end();d++)
    {
        cout<<(*d)<<endl;
    }
    set<int>::iterator c;
    c=jihe.begin();
    cout<<(*c)<<endl;
    cout<<jihe.size()<<endl;
    cout<<jihe.max_size()<<endl;
    set<char>ji;
    cout<<ji.max_size()<<endl;
    cout<<"空则返回1,非空返回0 "<<jihe.empty()<<endl;
    jihe.clear();
    cout<<"空则返回1,非空返回0 "<<jihe.empty()<<endl;
    cout<<jihe.count(5)<<endl;
    return 0;
}

全部评论

相关推荐

邮小鼠:粤嵌的项目水的要死 来我们学校带过课程实习 项目名字是车机终端 实际上就是写了了个gui 还是老师把代码发给你你改改的那种
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务