向一个栈顶指针为top的链栈中插入一个p所指的结点时,其操作步骤是()。
7 查阅
向一个栈顶指针为top的链栈中插入一个p所指的结点时,其操作步骤是()。
A.top->next=p;
B.P->next=top->next;top->next=p;
C.p->next=top;top=p;
D.P->next=top;top=top->next;
参考答案: