九度OJ1512:用两个栈实现队列

该博客讨论了如何利用两个栈来模拟队列的基本操作,包括进队(push)和出队(pop)。在push时,数据直接压入栈1;在pop时,将栈1的所有元素转移到栈2,然后从栈2顶部取出元素,实现队列的先进先出特性。文章提供了C++的实现代码。
摘要由CSDN通过智能技术生成

题目链接: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;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值