• 2022-06-16
    设带有头结点链栈,其栈项指针为top,向链栈中插入一个s结点时,则执行()
    A: s->next=top->next; top->next=s
    B: s->next=top->next; top=s
    C: s->next=top; top->next=s
    D: top->next=s; s->next=top->next