import java.util.*; public class Solution { public boolean IsPopOrder(int [] pushA,int [] popA) { Deque<Integer> s1 = new ArrayDeque<>(); // 往 s1 入栈,中间可能存在部分先出栈,再继续入栈的情况 int j = 0; for(int x : pushA){ s1.push(x); // 1. 中途开始出栈; ...