Problem B: STL——多重集的插入和删除

来源:互联网 发布:硬盘使用寿命 知乎 编辑:程序博客网 时间:2024/05/21 09:11

Description

给你一个集合,一开始集合是空集,然后进行若干操作,最后你要从小到大输出集合中的元素,以空格隔开。(集合中可能会有相同元素)

Input

一共有若干输入数据,开头一个n(n<=20),n=0代表输入结束。
然后有n行,每行有2种形式:
“i x”,x是一个整数,代表向集合中插入元素x
“d x”,x是一个整数,代表删除一个x

Output

每组输入结束后,从小到大输出集合中的元素,以空格隔开。

Sample Input

2i 2i 24i 1i 1i 2d 10

Sample Output

2 21 2

HINT

用STL的multiset容易解决

#include <iostream>#include <set>#include <iterator>using namespace std;int main(){   int n;   while(cin>>n&&n&&n<=20){      multiset<int>s;      while(n--){        char a;int m;        cin>>a>>m;        if(a=='i'){ s.insert(m);}        if(a=='d'){           multiset< int,less<int> > ::iterator p;           for(p=s.begin();p!=s.end();p++){                if(m==*p){ s.erase(p);break;}           }        }      }      multiset< int,less<int> > ::iterator it;      for(it=s.begin();it!=s.end();it++){         if(it==s.begin())            cout<<*it;         else            cout<<" "<<*it;      }      cout<<endl;    }   return 0;}


1 0
原创粉丝点击