解法一:笨方法(列出所有情况) function IsPopOrder(pushV, popV) { // write code here const stack = [] while (popV.length > 0) { co...