题目28:堆栈的使用

来源:互联网 发布:阿里云et 编辑:程序博客网 时间:2024/05/28 15:47

http://ac.jobdu.com/problem.php?cid=1040&pid=27

题目描述:

    堆栈是一种基本的数据结构。堆栈具有两种基本操作方式,push 和 pop。Push一个值会将其压入栈顶,而 pop 则会将栈顶的值弹出。现在我们就来验证一下堆栈的使用。

输入:

     对于每组测试数据,第一行是一个正整数 n,0<n<=10000(n=0 结束)。而后的 n 行,每行的第一个字符可能是'P’或者'O’或者'A’;如果是'P’,后面还会跟着一个整数,表示把这个数据压入堆栈;如果是'O’,表示将栈顶的值 pop 出来,如果堆栈中没有元素时,忽略本次操作;如果是'A’,表示询问当前栈顶的值,如果当时栈为空,则输出'E'。堆栈开始为空。

输出:

    对于每组测试数据,根据其中的命令字符来处理堆栈;并对所有的'A’操作,输出当时栈顶的值,每个占据一行,如果当时栈为空,则输出'E’。当每组测试数据完成后,输出一个空行。

样例输入:
3AP 5A4P 3P 6O A0
样例输出:
E53
// 题目28:堆栈的使用.cpp: 主项目文件。#include "stdafx.h"#include <cstdio>#include <cstdlib>#include <cstring>#include <iostream>#include <algorithm>#include <vector>#include <string>#include <set>#include <map>#include <queue>#include <stack>using namespace std;stack<int> S;int main(){//freopen("F:\\test.txt","r",stdin);//freopen("F:\\output.txt","w",stdout);int n;while(cin>>n&&n!=0){while(!S.empty())S.pop();while(n--){char ch;cin>>ch;if(ch=='P'){int value;cin>>value;S.push(value);}else if(ch=='A'){if(S.empty())cout<<"E"<<endl;else{int topTemp=S.top();cout<<topTemp<<endl;}}else if(ch=='O'){if(!S.empty())S.pop();}}cout<<endl;}return 0;}