📜  数据结构|队列|问题11

📅  最后修改于: 2021-06-29 05:47:20             🧑  作者: Mango

假设使用n个元素的数组实现容量为(n – 1)个元素的循环队列。假定分别使用REAR和FRONT作为数组索引变量来执行插入和删除操作。最初,REAR = FRONT =0。检测队列已满和队列为空的条件是
(A)满:(REAR + 1)mod n ==前,空:REAR ==前
(B)满:(REAR + 1)mod n ==前,空:(FRONT + 1)mod n == REAR
(C)满:后方==前部,空:(后方1)mod n ==前部
(D)满:(前+1)mod n ==后,空:后==前答案: (A)
解释:

Suppose we start filling the queue.

Let the maxQueueSize ( Capacity of the Queue) is 4.
So the size of the array which is used to implement 
this circular queue is 5, which is n.

In the beginning when the queue is empty, FRONT and REAR 
point to 0 index in the array.

REAR represents insertion at the REAR index.
FRONT represents deletion from the FRONT index.

enqueue("a"); REAR = (REAR+1)%5; ( FRONT = 0, REAR = 1)
enqueue("b"); REAR = (REAR+1)%5; ( FRONT = 0, REAR = 2)
enqueue("c"); REAR = (REAR+1)%5; ( FRONT = 0, REAR = 3)
enqueue("d"); REAR = (REAR+1)%5; ( FRONT = 0, REAR = 4)

Now the queue size is 4 which is equal to the maxQueueSize. 
Hence overflow condition is reached.

Now, we can check for the conditions.

When Queue Full :

( REAR+1)%n = (4+1)%5 = 0

FRONT is also 0.

Hence ( REAR + 1 ) %n is equal to FRONT.

When Queue Empty :

REAR was equal to FRONT when empty ( because in the starting 
before filling the queue FRONT = REAR = 0 )

Hence Option A is correct. 

这个问题的测验