A C++ console application for managing employee tasks using a Max-Heap Priority Queue.
- Add tasks with priority (1-10)
- Display tasks sorted by priority
- Mark tasks as complete
- Next task reminder
- Edit & postpone tasks
g++ main.cpp -o TaskManager
./TaskManagerMax-Heap Priority Queue - ensures highest priority tasks are always accessible in O(1) time.