在单链表中,要将s所指结点插入到p所指结点之后,其语句应该为()


在单链表中,要将s所指结点插入到p所指结点之后,其语句应该为()

A、s->nExt=p+1;p->nExt=s;

B、(*p).nExt=s;(*s).nExt=(*p).nExt;

C、s->nExt=p->nExt;p->nExt=s->nExt;

D、s->nExt=p->nExt;p->nExt=s;

正确答案:s->nExt=p->nExt;p->nExt=s;


Tag:结点 所指 语句 时间:2024-04-11 15:56:48