问题详情
设p为单链表中某结点的指针(指向后继的指针名为next),则在p结点后插入新结点(指针为s)的语句是()和p->next=s。
A、s->next=p
B、s=p->next
C、s=p
D、s->next=p->next