在单链表指针为p的结点之后插入指针为s的节点,正确的操作是:( )。
p->next=s;p->next=s->next;
p->next=s->next;p->next=s;
s->next=p->next;p->next=s;
p->next=s;s->next=p->next;