单选题 在一个单链表中,若要删除p结点的后继结点,则执行( )。
A.p ↑.next:=p ↑.next ↑.next
B.p:=p ↑.next;p ↑.next::p ↑.next ↑.next
C.dispose (p ↑.next)
D.p:=p ↑.next ↑.next

【正确答案】 A
【答案解析】