单项选择题

在指针p指向单链表结点之后插入s所指结点的操作是:()。

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