栈的压入弹出序列

Posted yqpy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了栈的压入弹出序列相关的知识,希望对你有一定的参考价值。

 

 

 

 

class Solution:
    def IsPopOrder(self, pushV, popV):
        # write code here
        stack = []
        for i in pushV:
            stack.append(i)
            while stack and stack[-1] == popV[0]:
                stack.pop()
                popV.pop(0)
        return True if not stack else False

 

以上是关于栈的压入弹出序列的主要内容,如果未能解决你的问题,请参考以下文章

Offer[31] 栈的压入弹出序列

剑指offer 栈的压入弹出序列

剑指offer 栈的压入弹出序列

剑指offer--31栈的压入弹出序列

剑指offer--31栈的压入弹出序列

算法:栈的压入弹出序列