CLI Task Manager built with Singly Linked List in C++.
- Click "Code" → "Download ZIP"
- Extract →
g++ task.cpp -o task && ./task
=== Task Manager ===
- Add Task
- Remove Task
- Mark Complete
- Display Tasks
- Exit Choice: 1 Task: Go through a lecture Added. Tasks(1 total): Go through a lecture YAY DONE!
- ✅ O(1) Add task (head insertion)
- ✅ O(n) Remove + search
- ✅ File persistence (
tasks.txt) - ✅ Proper memory management
g++ task.cpp -o task
./task