STL之multiset应用。

要求:可添加数,可删除最大、最小的数,可查询当前最大、最小的数。

思路:multiset里可以有重复的数,但删除的时候,会把相同的数一并删除,只需将多删的数再加进去即可。

#include #include #include #include using namespace std; int main() { int a,b;int c,d; int i=0; char ch[4]; scanf("%d%d",&a,&b); getchar(); multiset tree; tree.clear (); multiset::iterator it,pre; tree.insert (b); while(i

你可能感兴趣的:(省赛之后,C++应用)