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

    内容

    • 0

      不带头结点的单链表Head为空的判定条件是( ) A: Head=Nll B: Head->next=NULL C: Head->next=Head D: Head->next!=NULL

    • 1

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

    • 2

      不带头结点的单链表head为空的判定条件是 A: head==NUL B: head->next==NULL C: head->next==head D: head!=NULL

    • 3

      ‍不带头结点的单链表head为空的判定条件是‎ A: head==NUL B: head->next==NULL C: head->next==head D: head!=NULL

    • 4

      带头结点的循环单链表head为空的判断条件是() A:  head == NULL B:  head != NULL C:  head->next == head D:  head->next == NULL