在一个单链表中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
正确答案:D
猜你喜欢