在一个单链表中p所指结点之后插入一个s所指的结点时,可执行()。
A:p=s->next
B:p->next=s;s->next=p->next
C:p->next=s->next;
D:s->next=p->next;p->next=s;
出自:国家开放大学《数据结构》