Fill in the blanks with the right choice
查看答案
Add proper suffixesto these words and form new words.please choose the best answer.
用数组Q[n] 表示一个循环队列,f为当前队头元素的位置,r为队尾元素的下一个位置,计算队列中元素个数的公式为
A. r-f
B. (f-r+n)% n
C. r-f+n
D. (r-f+n)% n
若用一个有6个单元的数组来实现循环队列,rear和front的初值分别为0和3。则从队列中删除一个元素,再添加两个元素后,rear和front的值分别为
A. 1和5
B. 2和4
C. 4和2
D. 5和1
循环队列存储在数组元素A[0]至A[m]中,则入队时的操作为
A. rear=rear+1
B. rear=(rear+1)%(m-1)
C. rear=(rear+1)%m
D. rear=(rear+1)%(m+1)