• 2022-06-16
    用头插法在头指针为head的带头结点单链表中,将s指向结点插入到链表中的操作是( )
    A: head->next=s;s->next=head->next;
    B: s->next=head->next;head->next=S;
    C: head=s;s->next=head;
    D: s->next=head;head=s;