单项选择题
A.p=front;front=front.next;B.front=front.next;p=front;C.rear.next=p;rear=p;D.rear=p;rear.next=p;
A.rear.data;B.front.data;C.rear.next.data;D.front.next.data;
A.top=top.next;x=top.data;B.x=top;top=top.next;C.x=top.data;top=top.next;D.x=top.data;