成人高等教育 / 数据结构
正确率:100%
在一个栈顶指针为top的链栈中,将一个p指针所指的结点入栈,应执行( )。
- A、
A.top->next=p;
- B、
B.p->next=top->next;top->next=p;
- C、
C.p->next=top; top=p;
- D、
D.p->next=top->next; top=top->next;
参考答案: