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