*p之后插入节点*s的操作是()
A:p->next=s;s->next=p->next;
B:s->next=p-next;p->next=s;
C:p=s->next;s=p->next;
D:s=p->next;p=s->next;
出自:计算机科学