a linked list implementation of a STACK written in C++
This is a simple implementation of the FIFO data structure written in C++.
compile the included cpp file using g++ linkedSTACK.cpp -o linkedSTACK
then, run the binary file using ./linkedSTACK
Compile and run using your favourite compiler/IDE. recommended: DEV C++ or Code::Blocks
- Push , pop and display using functions ( Modular )
- Menu driven (CLI)
- Dynamically allocated memory
- ( Virutally ) Infinite storage
- Data structure can be morphed/changed easily
- Garbage collection
- Quick runtime
DISCLAIMER: This is for learing purposes , i know it has bugs. help me out with them? and it also happens to be my first repository.