what is the circular queue? write down the algorithm to insert an element in circular queue?
Answers
Answered by
1
Answer:
xyzddghiitryuuuuuyyt
Answered by
2
Answer:
Explanation:
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.
Similar questions