题目内容

P20表示管子在介质温度为()时的允许工作压力。

A. 200℃
B. 20℃
C. 100℃
D. 50℃

查看答案
更多问题

在具有n个单元的循环队列Q中,判断队满的关系式是什么?

写出下列程序段的输出结果(栈的元素类型为char)void main( ){SqStack S;Char x='c', y='k';InitStack(S);Push(S, x); Push(S, 'a'); Push(S, y);Pop(S, x); Push(S, 't'); Push(S, x);Pop(S, x); Push(S, 's');while( !StackEmpty(S) ){ Pop(S,y); cout<

简述以下算法的功能(栈和队列的元素类型均为int)。void Chang(SqQueue &Q){SqStack S;int d;InitStack(S);while ( !QueueEmpty(Q) ){DeQueue (Q, d);Push(S, d);}while( !StackEmpty(S) ){Pop(S, d);EnQueue (Q, d);}}

有一字符串序列为5*-x-y/x+2,利用栈的运算将其输出结果变为5x-*yx+/-2,试写出该操作的入栈和出栈过程(采用push(a)表示a入栈,pop(a)表示a出栈)。

答案查题题库