向一个不带表头结点栈顶指针为 top 的链栈中插入一个 s 所指结点时,执行________

向一个不带表头结点栈顶指针为 top 的链栈中插入一个 s 所指结点时,执行________

A.top->next=s;

B.s->next=top->next; top->next=s;

C.s->next=top; top=s;

D.s->next=top; top=top->next;

正确答案是C