程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> poj 3481 Double Queue STL中map的運用

poj 3481 Double Queue STL中map的運用

編輯:關於C++

題意:

維護一個集合,操作有1:加入一個元素,2:刪除最大元素,3:刪除最小元素。

分析:

map本質是個容器,且具有第一個關鍵字有序的性質,所以用它來水水就好啦~

代碼:

//poj 3481
//sep9
#include 
#include 
using namespace std;

map mymap;
map::iterator iter; 

int main()
{
	int x,sum=0;
	while(scanf("%d",&x)==1&&x){
		if(x==1){
			int a,b;
			scanf("%d%d",&a,&b);
			mymap[b]=a;
			++sum;
		}else if(x==2){
			if(sum==0)
				printf("0\n");
			else{
				iter=mymap.end();
				--iter;
				printf("%d\n",iter->second);
				mymap.erase(iter);
				--sum;
			}		
		}else if(x==3){
			if(sum==0)
				printf("0\n");
			else{
				iter=mymap.begin();
				printf("%d\n",iter->second);
				mymap.erase(iter);
				--sum;
			}			
		}	
	}
	return 0;	
} 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved