单项选择题

在一个单链表中,删除p结点之后的一个结点的操作是( )。
A、p->next= p;
B、p->next ->next=p ->next;
C、p->next->next=p;
D、p->next=p->next->next;