求大神详细解答,并说明x是什么意思,谢谢了

设文件中序列为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

当年话下
浏览 103回答 1
1回答

慕娘9325324

loop执行完后head tailqueue: 15 20 25 0 30 0 35topstack: 00105bottomx为每次出队列元素。
打开App,查看更多内容
随时随地看视频慕课网APP