单项选择题

在一个链队列中,front和rear分别为头指针和尾指针,则插入一个结点s的操作为()。

A.front=front->next
B.s->next=rear;rear=s
C.rear->next=s;rear=s;
D.s->next=front;front=s;