在非空线性链表中由p所指的结点后面插入一个由q所指的结点的过程是依次执行()。
A:q->link=p; p->link=q;
B:q->link=p->link; p=q;
C:q->link=p->link; p->link=q;
D:p->link=q; q->link=p;
出自:考研