A collection of core data structures and algorithms implemented in C++ for study and reference — built from first principles to reinforce fundamentals.
[List what's actually in here — e.g.:]
- Linked lists (singly / doubly)
- Stacks & queues
- Sorting algorithms
- [Trees / searching / etc.]
A working reference base for systems-level problem solving and interview prep, emphasizing manual implementation over library use.
Each program compiles standalone:
g++ -std=c++17 [filename].cpp -o out && ./out