python 实现。自己的一点小思路,欢迎指正。主要利用了list中的元素互不相同的特性 class Solution: def IsPopOrder(self, pushV, popV): # write code here if not pushV and not popV: return True if not pushV or not popV: return False popV_copy=popV[:] for i in pushV: ...