天津大学 / 数据结构
正确率:100%
在一个单链表中,若删除p所指结点的后续结点,则执行()。
A.p=p->next;p->next=p->next->next
B.p=p->next->next
C.p->next=p->next->next
D.p->next=p->next
参考答案: