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;
}

全部评论

相关推荐

oppo 应用软开 22*15+0.5*12
拿到了ssp完美:真的坎坷,但是你至少拿到这么多offer了!
点赞 评论 收藏
分享
河和静子:如果大专也能好过的话,我寒窗苦读几年的书不是白读了?
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务