• 2022-06-03
    一个非空带头结点的单链表头指针为h,则在表头插入一个新的元素结点(由p所指向),正确的操作是()。
    A: h->next=p->next;p->next=h->next->next;
    B: p->next=h->next;h->next=p;
    C: p->next=h->next;h->next=p;
    D: h->next=p->next;p->next=h;