
- A CLI project that implements different Data Structure using C++.
- A practice project while learning Data Structure and Algorithms.
| Feature |
Status |
Queue Enqueue |
✅ |
Queue Dequeue |
✅ |
Queue Display |
✅ |
Queue Front |
✅ |
Queue Rear |
✅ |
Binary Tree Insert |
✅ |
Binary Tree Inorder Traversal |
✅ |
Binary Tree Preorder Traversal |
✅ |
Binary Tree Postorder Traversal |
✅ |
In Progress |
... |
- Install the
GNU C++ Compiler (GNU) and GNU Makefile.
- Run the computer program.
# Build the computer program.
make build
# Run the computer program with GDB.
make debug
# Run the computer program.
make run