若有定義: 則函數(shù)fun()的功能是()。
A.刪除單向鏈表 B.顯示單向鏈表中的所有數(shù)據(jù) C.顯示單向鏈表中的第一個(gè)數(shù)據(jù) D.創(chuàng)建單向鏈表
若有以下定義: 則不能將q所指向的結(jié)點(diǎn)連到上圖所示鏈表末尾的一組語(yǔ)句是()
A.q->next=NULL;p=p->next;p->next=q B.p=p->next;q->next=p;p->next=q C.p=p->next;q->next=p->next;p->next=q D.p=(*p).next;(*q).next=(*p).next;(*p).next=q
若有以下定義 則能保留鏈表其它結(jié)點(diǎn),而刪除p所指向結(jié)點(diǎn)的程序段是()
A.head->next=p->next;free(p) B.head->next=p;p->next=head->next;free(p) C.free(p);head->next=p;p->next=head->next D.free(p);head->next=p->next