• 2022-06-03
    对于一个头指针为head的带头结点的单链表,能够使p指向第1个结点的操作是:(  )
    A: p=head;
    B: p=head->next;
    C: p->next=head->next;
    D: head->next=p->next;