A program that implements the queue and stack data structures with thier respective methods.
Program created in 2022 as an lab assignment for my course on Data Structures and Algorithms in the British University in Dubai.
There are 2 classes present which are the Queue class and the Stacker class.
App.java contains the main method.
queue.java contains the Queue class and its methods which are enqueue and dequeue.
stacker.java contains the Stacker class, that represent the stack data structure, and its methods which are push and pop.