●带头结点的单链表head为空的判断条件是 ()。()A.head=NULL B.head->next=NULLC.head->next=head D.head<>NULL
第1题:
A.head==NULL
B.head->next==NULL
C.head->next=NULL:
D.head->next!=NULL
第2题:
head指向的带表头结点的单链表为空的判定条件是()。
A、head==NULL
B、head->next==head
C、head!=NULL
D、head->next==NULL
第3题:
在带头结点的单链表head为空的判定条件是()。
A.head=NULL
B.head->next=NULL
C.head->next=head
D.head!=NULL
第4题:
若不带头结点的单链表的头指针为head,则该链表为空的判定条件是 ( )
A.head==NULL
B.head—>next==NULL
C.head!=NULL
D.head—>next==head
第5题:
带头结点的单链表head为空的判断条件是( )
A.head=NULL
B.head—>next=NULL
C.head—>next=head
D.head!=NULL
第6题:
第7题:
带头结点的单向链表为空的判断条件是()(设头指针为head)。
Ahead==NULL
Bhead!=NULL
Chead->next==head
Dhead->next==NULL
第8题:
头指针为head的不带头结点的单向链表为空的判定条件是逻辑表达式()为真。
第9题:
带头结点的单向链表为空的判断条件是()(设头指针为head)。
第10题:
head=NULL
head->next==NUL
head->next==head
head!=NULL
第11题:
head==NULL
head->next==NULL
head->next ==head
head!=NULL
第12题:
head->next==NULL
head->next==head
head==NULL
head!=NULL
第13题:
A、head->next==head
B、head->next==NULL
C、head!=NULL
D、head ==NULL
第14题:
A.head->next==NULL
B.head->next==head
C.head==NULL
D.head!=NULL
第15题:
A.p==NULL
B.p->next==NULL
C.p->next->next==NULL
第16题:
若不带头结点的单链表中,头指针为head,则该链表为空的判定条件是(25)。
A.head==NULL
B.head->next==NULL
C.head!=NULL
D.head->next==head
第17题:
第18题:
带头结点的链表为空的判断条件是()(设头指针为head)。
Ahead->next==NULL
Bhead->next==head
Chead==NULL
Dhead!=NULL
第19题:
带头结点的循环单链表head为空的判断条件是()
第20题:
头指针为head的带头结点的单向循环链表,p所指向尾结点,要使该链表成为不带头结点的单向循环链表, 可执行head=head->nex;和()。
第21题:
带头结点的单链表head为空的判定条件是()。
第22题:
p=head->next
head->next=p
head->next=p->next
p->next=head
第23题:
head==NULL
head!=NULL
head->next==head
head->next==NULL
第24题:
head == NULL
head != NULL
head->next == head
head->next == NULL