Summary:
This is my practice workspace for my C++ programs
Contents:
The major programs written in this workspace are as follows:
stack.cpp -> Array implementation of a stack
stackList.cpp -> Linked List implementation of a stack
|__queueArray.cpp -> Array implementation of a queue
|__queueLinkedList -> Linked List implementation of a queue
Instructions:
Any program can be ran using your favourite C++ compiler.
If you are using g++ as your compiler the simplest way to run is to use the following steps
g++ <program_name>.cpp
./a.out
Compiling will give you the dashboard of the program in question. Follow the instructions to run the program.