Question: Write a program in C + + using the List class from this chapter that implements a to - do list. The to - do

Write a program in C++ using the List class from this chapter that implements a to-
do list. The to-do items will be entered as strings. The user should be
prompted to enter a command (add an item, mark an item as done or partially
done, delete an item, and print the list) and data as necessary. Simply storing
items in the list is easy, but the List class doesn't directly support the
recording of the status of each task. You might want to go about this in
several different ways. One approach would be to implement a struct or a
class that represents an item and its status, and then modify the List class to
work with this struct or class as its item type. Another way would be to keep
three lists: Done, Partial, and Undone. When an item is created, it enters the
Undone list. When its status is changed, it moves to one of the other lists as
appropriate. Choose the approach that you prefer, and implement the
application using proper style, effective prompts, and sufficient
documentation.
 Write a program in C++ using the List class from this

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!