在一个单链表中,要在p指针所指结点之后插入s结点,其操作是s- > next=p- > next和()。
在一个单链表中,要在p指针所指结点之后插入s结点,其操作是s- > next=p- > next和()。
【正确答案】:p-next=s
Top