• 2022-05-31
    在一个带头结点的单链表head中,若要将 s 所指结点插入在第一个结点之前,则执行()。
    A: head->next=s;s->next=head;
    B: s->next=head->next;head=s;
    C: s->next=head;head->next=s;
    D: s->next=head->next;head->next=s;