Data Structure: Queue

Queue is a datastructure that follows FIFO policy. FIFO: First in First Out

Inserting an element to a queue is called ENQUEUE and deleting an element is called DEQUEUE.

Use Cases: - Serve requests on a single shared resource like a printer etc. - Call center phone systems.