|
Queue->Circular queue->Insert operation |
||
| Haven't you
realised that the regular, static queues we saw have a very big drawback
that once the queue is FULL, even though we delete few elements from the
"front" and relieve some occupied space, we are not able to
add anymore elements, as the "rear" has already reached the
Queue's rear most position. The solution lies in a queue in which the
moment "rear" reaches the Queue's watermark, the
"first" element will become the queue's new "rear". As the name suggests, this Queue is not straight but circular; meaning, you got to have a structure like this - Here, as you can see, the "front" value is 0 and the "rear" value is 5. Initially, when such a queue is empty, the "front" and the "rear" values are 0 & -1 respectively; and the queue has a NULL value for all its element. Every time we add an element to the queue, the "rear" value increments by 1 till the time it reaches the upper limit of queue; after which it starts all over again from 0. Similarly, every time we delete an element from queue, the "front" value increments by 1 till the time it reaches the upper limit of queue; after which it starts all over again from 0. Algorithm for
Insertion:- C implementation:- addval( int new) Note:- I have implemented this topic using arrays only as Circular queues are used only when limited memory space is there and static implementation is required, so that one can optimally utilize the allocated memory space. Related Operations: |
||
| Index || Doubts / Clarifications || Related Topics || Web Links | ||