在一个单链表中,已知q 所指结点是p 所指结点的前驱结点,若在q 和p 之间插入结点s, 则执行( )。 A:q->next=s; s->next=p; B:s->next=p->next;p->next=s; C:p->next=s->n 点我阅读全文