/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param node int整型 * @return 无 */ static int instack[1000]; static int outstack[1000]; static int top1=0; static int top2=0; void push(int node ) { // write code here instack[top1++]=node; } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param 无 * @...