注意:此页面搜索的是所有试题
在下面空格处填写一条语句,以使下面的出栈算法完整。
ElemType Pop(struct SeqStack*s,ElemType x)
{
If (StackEmpty(s)){
printf(“栈下溢出错误!\n”);
exit(1);
}
x=s->data[s->top];
_________
return x;
}
A.s->top--;
B.s->data--;
C.s->top=s->data;
D.s->data=s->top;

参考答案