My projects in Algorithms

In mathematics and computer science, an algorithm is an effective method expressed as a finite list of well-defined instructions for calculating a function. Algorithms are used for calculation, data processing, and automated reasoning. In simple words an algorithm is a step-by-step procedure for calculations.
Queue Implementation
The queue is a data structure that looks like people that are waiting at the front of a shop. It is very used often. Here I share one my implementation of the queue data structure.
Stack Implementation
The stack is a data structure that looks like a pile of paper on which only from the top new sheets could be placed and taken. Here I share one my implementation of the stack.