Queue :


Queue is a Linear Data structure that store and removes it's element in First-In-First-Out(FIFO).

Insertation can be perform from One end and and Deletion of elements can be performed on another end.

Insertation and Deletion of elements in Queue often called as Enqueue and Dequeue.


Operations with queue :


Implementation of Queue : Queue can be implemented in python using the following ways :