Java实现 用一个辅助栈来模拟 import java.util.*; public class Solution { public boolean IsPopOrder(int [] pushA,int [] popA) { // 建议使用Deque来声明栈 Deque<Integer> stk = new ArrayDeque<>(); // 分别表示pushA和popA的下标 int m = 0, n = 0; while(m < pushA.length) { ...