Implement three classes: The AddressList is used for testing only, and there is
ID: 3542187 • Letter: I
Question
Implement three classes:
The AddressList is used for testing only, and there is no need to turn it in.
The OrderedLinkedList class must provide at least the following methods:
Finding a given key k should search through the linked list. If a key is found that is greater than k, the search can stop, since the linked list is ordered and only other keys greater than k will follow this one.
Your address book class is not graded, so the details are up to you. I would suggest that your address book class provide a user interface that allows a user to:
The details of the user interface are up to you. At the very least, you could print a prompt and have a user enter the command (one of the strings "add", "find", or "print"), then ask for the appropriate parameters for each. Or if you prefer, you can open a window to get the input from the user and report on the results.
Explanation / Answer
Deadline for this assignment?