注意:此页面搜索的是所有试题
设单链表中指针p指着结点A,要删除A之后的结点(若存在),则需修改指针的操作为( )。(本题1.0分)
A、 p->next=p->next->next
B、 p=p->next
C、 p=p->next->next
D、 next=p

参考答案