【填空题】
A、rear->next=p;rear=p; B、rear->next=p;p=rear; C、p=rear->next;rear=p; D、rear=p;rear->next=p;
A、front=p->next; B、front->next=p->next; C、front=p; D、front->next=p;
A、A.front=p->next; B、B.front->next=p; C、C.front=p; D、D.front->next=p->next;