带头结点的单链表head为空的判定条件是( )。
A: head->next->next==NULL
B: head->next==NULL
C: head->next=NULL
D: head==NULL
A: head->next->next==NULL
B: head->next==NULL
C: head->next=NULL
D: head==NULL
B
举一反三
- 带头结点的单链表Head为空的判定条件是( ) A: Head=NUll B: Head->next=NULL C: Head->next=Head D: Head->next!=NULL
- 带头结点的单链表为空的判定条件是( ) A: head->next == NULL B: head->next == head C: head == NULL D: head != NULL
- 带头结点的单链表为空的判定条件是( ) A: head->next == NULL B: head->next == head C: head == NULL D: head != NULL
- 带头结点的单链表为空的判定条件是( ) A: head->next == NULL B: head->next == head C: head == NULL D: head != NULL
- 不带头结点的单链表head为空的判定条件为( ) A: head->next==NULL B: head!=NULL C: head==NULL D: head->next=head
内容
- 0
不带头结点的单链表为空的判定条件是 ( )。 A: head==NULL B: head->next==NULL C: head->next==head D: head!=NULL
- 1
不带头结点的单链表为空的判定条件是 ( )。 A: head==NULL B: head->next==NULL C: head->next==head D: head!=NULL
- 2
不带头结点的单链表为空的判定条件是 ( )。 A: head==NULL B: head->next==NULL C: head->next==head D: head!=NULL
- 3
不带头结点的单链表(头指针为head)为空的判定条件是( )。 A: head==NULL B: head->next==NULL C: head->next==head D: head!=NULL
- 4
带头结点的循环单链表中空链表的判定条件是 ( ) A: head == NULL B: head->next == head C: head->next == NULL D: head != NULL