• 2022-07-29
    若不带头结点的链栈其栈顶指针为top,则删除栈顶元素,应进行如下()操作。
    A: top=top->next; s=top;free(s);
    B: s=top; top=top->next; free(s);
    C: s=top->next; top->next=s->next;free(s);
    D: s=top; top->next=s->next;free(s);