data structure

Implementation of Queue in Python

A queue is an ordered collection of items where the addition of new items happens at one end, called the…

5 years ago

Implementation of Stack in Python

A stack is an ordered collection of items where the addition of new items and the removal of existing items…

5 years ago