• 2022-06-26
    向一个顺序栈S(栈顶指针为top)中插入元素x时,首先要()。
    A: S->stack[S->top]=x
    B: S->top++
    C: S->top--
    D: x=S->stack[S->top]