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