单项选择题

在一个单链表中,若要删除p节点的后续节点,则执行

A.p↑. next: =p↑. next↑. Next;
B.p:=p↑. next; p↑. next:=p↑. next↑. next;
C.free(p↑. next);
D.p:=p↑. next↑. next;