注意:此页面搜索的是所有试题
1 . 设单链表中指针p指向结点m,若要删除m之后的结点(若存在),则需修改指针的操作为( )。

A.p->next=p->next->next;
B.p=p->next;
C.p=p->next->next;
D.p->next=p;

参考答案