• 2022-07-28
    判定以head为头指针的单向加头循环链表为空的条件是 。
    A: head->next= =NULL
    B: head= =NULL
    C: head->next= =head
    D: head!=NULL
  • C

    内容

    • 0

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

    • 1

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

    • 2

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

    • 3

      带头结点的单向链表的头指针为head,该链表为空的判定条件是()的值为真。 A: head==NULL B: head->next==head C: head->next==NULL D: head==head->next

    • 4

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