设文件中序列为5 10 0 0 15 20 25 0 30 0 , 35 执行下列代码后,队列Q和栈S中的内容分别是什么?
1 Q = createQueue
2 S = createStack
3 loop (not end of file)
1 read number
2 if (number not 0)
1 enqueue (Q, number)
3 else
1 dequeue(Q, x)
2 pushStack(S, x)
3 enqueue(Q, number)
4 end if
4 end loop
慕娘9325324