/Queue-using-Lists-in-Python

A queue can be defined as an ordered list which enables insert operations to be performed at one end called REAR and delete operations to be performed at another end called FRONT. Queue is referred to be as First In First Out list. Here, is the implementation of queue using built in data type of Python i.e. Lists.

Primary LanguagePython

Watchers