coderz.py

Keep Coding Keep Cheering!

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 “rear,” and the removal of existing items occurs at the other end, commonly called the “front.”

August 10, 2020 | Data Structure, python | No comments

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 always takes place at the same end.

August 6, 2020 | Data Structure, python | No comments

Advertisement