-
A data structure which follows the principal of FIFO (First In First Out).
-
A element is inserted at the back and deleted in the front.
-
Enqueue - Adds an element to the back of the Queue
-
Dequeue - Remove the element from the front of the Queue
- Double ended Queue
- A element is inserted anddeleted from both the front and back of the Queue
- Circular Queue
- In standard Queue, when an element is deleted, the vacant space is not reutilized. However, in a circular Queue, vacant spaces are reutilized.