单选题带头节点的单链表L为空的判定条件是()。AL = =nullBL-data= =nullCL-next= =nullDL-next= =data
单选题
带头节点的单链表L为空的判定条件是()。
A
L = =null
B
L->data= =null
C
L->next= =null
D
L->next= =data
参考解析
解析:
暂无解析
相关考题:
带头结点的单链表first为空的判定条件是()。 A . first==NULLB . first->1ink==NULLC . first->link==firstD . first!=NULL
若不带头结点的单链表的头指针为head,则该链表为空的判定条件是 ( )A.head==NULLB.head—>next==NULLC.head!=NULLD.head—>next==head
若不带头结点的单链表中,头指针为head,则该链表为空的判定条件是(25)。A.head==NULLB.head->next==NULLC.head!=NULLD.head->next==head
带头结点的单向链表的头指针为head,该链表为空的判定条件是()的值为真。Ahead==NULLBhead-next==headChead-next==NULLDhead==head-next
带头结点的循环单链表head为空的判断条件是()A、 head == NULLB、 head != NULLC、 head->next == headD、 head->next == NULL
单选题带头结点的单向链表的头指针为head,该链表为空的判定条件是()的值为真。Ahead==NULLBhead-next==headChead-next==NULLDhead==head-next
填空题判断带头结点的单链表L为空的条件()