A. top不变 B. top=top-n C. top=top-1 D. top=top+1
A. 前一个位置 B. 后一个位置 C. 队首元素位置 D. 队尾元素位置
A. 3,4,2,1 B. 2,4,3,1 C. 1,4,2,3 D. 3,2,1,4
A. front= =rear+1 B. front+1= =rear C. front= =rear D. front= =0
A. hs->next=s; B. s->next=hs->next;hs->next=s; C. s->next=hs;hs=s; D. s->next=hs;hs=hs->next;
A. 对 B. 错