Define Circular Queue. Describe implementation of Circular Queue ? 


==> Circular queue--

  •  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
  •  In circular queue the last node is connected back to the first node to make a circle
  • Both the front and the rear pointers points to the beginning of the array.
  • It is also called as “Ring buffer”.


Share to whatsapp

More Questions from Data Structures and Algorithms Module 2

Define Tower of Hanoi . Explain algorithm for Tower of Hanoi ? 


View

Explain Conversion to Infix expression to Postfix expression


View

Explain Algorithm for Enqueue operation  and Algorithm for Dequeue operation using array ? 


View

Define Queue. Explain Applications of Queue ? 


View

Define Evaluation of Postfix expression. Explain algorithm and example for it ? 


View

Define Priority Queue. Explain Application and implementation of Priority Queue ? 


View

 Explain Applications of Stack ? 


View