在一个单链表HL中,若要在指针q所指的结点的后面插入一个由指针p所指的结点,则执行()
A:q->next=p->next;p->next=q;
B:p->next=q->next;q=p;
C:p->next=q->next;q->next=p;
出自:计算机科学