• 2022-06-26
    在单链表中删除p所指结点的后继结点的语句是( )。
    A: p->next=p->next->next;
    B: p->next=NULL;
    C: p=p->next;
    D: p=p->next->next;