已知h是指向单向加头链表的头指针,p指向一个新结点,将p所指结点插在表头的操作是()。


已知h是指向单向加头链表的头指针,p指向一个新结点,将p所指结点插在表头的操作是()。

A.p->next=h,h->next=p;

B.p->next=h->next,h->next=p;

C.p->next=h,h=p;

D.h->next=p,p->next=h->next;

正确答案:p->next=h->next,h->next=p;


Tag:数据结构 结点 表头 时间:2022-01-19 20:49:16