Computer Science, asked by Anonymous, 9 months ago

How to implement circular queue​

Answers

Answered by cutegirl0141
0

Answer:

CIRCULAR QUEUE

Explanation:

A circular queue is a very important data structure because it can store data in a very practical way. The circular queue is a linear data structure. It follows FIFO principle. In circular queue, the last node is connected back to the first node to make a circle. Circular array list fallows the First In First Out principle. Elements are added at the rear end and the elements are deleted at the front end of the queue.

Answered by ambersaber
0

MARK BRILLIANT

Answer:

Circular Queue is a linear data structure in which the operations are performed based on FIFO (First In First Out) principle and the last position is connected back to the first position to make a circle. It is also called 'Ring Buffer'. In a normal Queue, we can insert elements until queue becomes full.

Explanation:

Similar questions