问题详情
设单链表中指针 p 指向结点 m ,若要删除 m 之后的结点(),则需要修改指针的操作为
A、p->next=p->next->next;
B、p=p->next;
C、p=p->next->next;
D、p->next=p;