下载APP
刷刷题APP > 栈算法
"栈算法"相关考试题目
1.
将以下进栈算法填写完整 bool Push(SqStack *&s, ElemType e) { if(s->top==MaxSize-1) return false; ; s->data[s->top]= ; return true; }