问题 更新时间2023/6/28 20:28:00 在下面空格处填写一条语句,以使下面的出栈算法完整。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; 答案 登录 注册 A. s->top--; 出自:国家开放大学 >> 国家开放大学数据结构复习题