一个单向链表队列中有一个节点p,现要将节点q插入到p之后,应该执行的操作是
q->next=p->next; p->next=q;
q->next=p;p->next=q;
p->next=q;q->next=p->next;