问题详情
A.p->next=top;top=p;
B.top->next=p;
C.p->next=top->next;top=top->next;
D.p->next=top->next;top->next=p;
请帮忙给出正确答案和分析,谢谢!