• 2022-06-03
    ●在单链表中,指针p指向元素为x的结点,实现"删除x的后继"的语句是 (20) 。(20)
    A: p=p→next;
    B: p→next=p→next→next;
    C: p→next=p;
    D: p=p→next→next;