设数组data〔0……m〕作为循环队列SQ的存储空间,front为队头指针,rear为队尾指针,试写出执行出队操作的

2024-12-18 16:55:51
推荐回答(1个)
回答1:

if front=rear then error('Quee Empty!');
temp:=data[front];
front:=(front+1) mod m; //循环意义下的头指针加1

return temp;