• 2022-05-30
    带头结点的单链表head为空的判定条件是( )。
    A: head->next->next==NULL
    B: head->next==NULL
    C: head->next=NULL
    D: head==NULL
  • B

    内容

    • 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