[编程题]栈的压入、弹出序列

62 篇文章 1 订阅

[编程题]栈的压入、弹出序列

输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否可能为该栈的弹出顺序。假设压入栈的所有数字均不相等。例如序列1,2,3,4,5是某栈的压入顺序,序列4,5,3,2,1是该压栈序列对应的一个弹出序列,但4,3,5,1,2就不可能是该压栈序列的弹出序列。(注意:这两个序列的长度是相等的)

Java:

import java.util.ArrayList;
import java.util.Deque;
import java.util.LinkedList;
import java.util.List;

public class Solution {
    private List<Integer> IntArrayToList(int[] array)
    {
        List<Integer> ret = new ArrayList<>();

        for (int j : array)
        {
            ret.add(j);
        }
        return ret;
    }
    
    public boolean IsPopOrder(int [] pushA,int [] popA) {
        List<Integer> pushList = IntArrayToList(pushA);
        List<Integer> popList = IntArrayToList(popA);

        Deque<Integer> stack = new LinkedList<>();

        while (!popList.isEmpty())
        {
            int temp = popList.remove(0);

            while (true)
            {
                if (stack.isEmpty() || stack.peek() != temp)
                {
                    if (pushList.isEmpty())
                    {
                        return false;
                    }

                    int q = pushList.remove(0);
                    stack.push(q);
                } else
                {
                    break;
                }
            }
            stack.pop();
        }
        return stack.isEmpty();
    }
}

C++:

class Solution {
public:
    bool IsPopOrder(vector<int> pushV,vector<int> popV) {
        if(pushV.size() != popV.size())
        {
            return false;
        }
        
        stack<int> s;
        size_t index = 0,outdex = 0;
        while(outdex < popV.size())
        {
            while(s.empty() || s.top() != popV[outdex])
            {
                if(index < pushV.size())
                {
                    s.push(pushV[index++]);
                }
                else
                {
                    return false;
                }
            }
            s.pop();
            outdex++;
        }
        return true;
    }
};
  • 7
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 4
    评论
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

枳洛淮南✘

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值