单项选择题

在一个单向链表中p所指结点之后插入一个s所指的结点时,可执行()。

A.p->next=s;s->next=p->next
B.p->next=s->next;
C.p=s->next
D.s->next=p->next; p->next=s;