Linked List Task Manager
CLI Task Manager built with Singly Linked List in C++.
Quick Start
- Click “Code” → “Download ZIP”
- Extract →
g++ task.cpp -o task && ./task
Demo
=== 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!
Features
- ✅ O(1) Add task (head insertion)
- ✅ O(n) Remove + search
- ✅ File persistence (
tasks.txt)
- ✅ Proper memory management
Build & Run
```bash
g++ task.cpp -o task
./task