问题详情
在一个单链表中,若删除P所指结点的后续结点,则执行( )。
A.p->next=p->next->next;
B.p=p->next:p->next=p->next->next;
C.p->next=p->next;
D.p=p->next->next;