• 2022-06-14
    一个顺序栈S,其栈顶指针为top,则将元素e入栈的操作就是( )。
    A: *S->top=e
    B: *S->top=e;S->top++
    C: S->top++;*S->top=e
    D: S->top=e