问题详情

●在单链表中,指针p指向元素为x的结点,实现"删除x的后继"的语句是 (20) 。

(20) A.p=p→next;

B.p→next=p→next→next;

C.p→next=p;

D.p=p→next→next;

参考答案
您可能感兴趣的试题