A ToDo List Using Multimap
Learn to make a to-do list using Multimap.
We'll cover the following...
An ordered task list (or a ToDo list) is a common computing application. Formally stated, it's a list of tasks associated with a priority, sorted in reverse numerical order.
We may be tempted to use a priority_queue
for this, because as the name implies, it's already sorted in priority (reverse numerical) order. The disadvantage of a priority_ queue
is ...