题目:向一个栈顶指针为top带头结点的链栈中入栈一个s所指结点时,需执行________操作。
A.s->next=top->next; top->next=s;
B.top->next=s;
C.s->next=top; top=s;
D.s->next=top; top=top->next;
题目:向一个栈顶指针为top带头结点的链栈中入栈一个s所指结点时,需执行________操作。
A.s->next=top->next; top->next=s;
B.top->next=s;
C.s->next=top; top=s;
D.s->next=top; top=top->next;