设文件中序列为5 10 0 0 15 20 25 0 30 0 , 35 执行下列代码后,队列Q和栈S中的内容分别是什么?1 Q = createQueue2 S = createStack3 loop (not end of file)1 read number2 if (number not 0)1 enqueue (Q, number)3 else1 dequeue(Q, x)2 pushStack(S, x)3 enqueue(Q, number)4 end if4 end loop
1 回答
慕娘9325324
TA贡献1783条经验 获得超4个赞
loop执行完后
head tail
queue: 15 20 25 0 30 0 35
top
stack: 0
0
10
5
bottom
x为每次出队列元素。
添加回答
举报
0/150
提交
取消