题目链接:http://ac.jobdu.com/problem.php?pid=1512
分析:题目要求用两个栈实现队列的操作,我们直到栈是FILO,队列是FIFO。进队的时候,将数据压入一个栈,出队的时候应该让先入栈的元素出栈,此时就要借助另一个栈,将入栈的数据全部压入另一个栈,此时另一个栈的栈顶就是应该出队的元素。
1. push时,数据压入stack1,;
2. pop时,先将stack1中的数据压入stack2,将stack2的数据出栈。结束。
C++实现:
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <cstring>
#include <vector>
#include <string>
#include <stack>
#include <algorithm>
using namespace std;
void process(stack<int> &s1,stack<int> &s2)
{
while(!s1.empty())
{
s2.push(s1.top());
s1.pop();
}
}
void input()
{
int x, y;
stack<int> s1, s2;
scanf("%d", &x);
char op[5];
while(x-- > 0)
{
scanf("%s", op);
if(op[1] == 'U')//strcmp(op, "PUSH") == 0
{
scanf("%d", &y);
s1.push(y);
}
else
{
if(!s2.empty())
{
printf("%d",s2.top());
s2.pop();
}
else
{
if(!s1.empty())
{
process(s1, s2);
printf("%d",s2.top());
s2.pop();
}
else
printf("-1");
}
putchar('\n');
}
}
}
int main()
{
input();
return 0;
}