带头结点的单向链表的头指针为head,该链表为空的判定条件是()的值为真。
A: Ahead==NULL
B: Bhead->next==head
C: Chead->next==NULL
D: Dhead==head->next
A: Ahead==NULL
B: Bhead->next==head
C: Chead->next==NULL
D: Dhead==head->next
举一反三
- 带头结点的单向链表的头指针为head,该链表为空的判定条件是()的值为真。 A: head==NULL B: head->next==head C: head->next==NULL D: head==head->next
- 带头结点的单向链表为空的判断条件是()(设头指针为head)。 A: Ahead==NULL B: Bhead!=NULL C: Chead->next==head D: Dhead->next==NULL
- 带头结点的链表为空的判断条件是()(设头指针为head)。 A: Ahead->next==NULL B: Bhead->next==head C: Chead==NULL D: Dhead!=NULL
- 头指针为head的不带头结点的单向链表为空的判定条件是逻辑表达式()为真。 A: Ahead==NULL B: Bhead->next==NULL C: Chead->next=NULL D: Dhead->next!=NULL
- head为带头结点的单链表的头指针,该单链表为空的判定条件是( )。 A: head==NULL B: head->next==NULL C: head->next==head D: head!=NULL