|
|
8 年 前 | |
|---|---|---|
| src | 8 年 前 | |
| .gitignore | 8 年 前 | |
| README.md | 8 年 前 | |
| pom.xml | 8 年 前 |
PhoneBook classPhoneBook class that holds names and phone numbers.Hint: You should use a sorted map.
Your PhoneBook class should have the following method
add(String name, String phoneNumber)
remove(String name)
lookup(String name)
namereverseLookup(String phoneNumber)
phoneNumberdisplay()
print a human-readable list of all entries (names and phone numbers) in alphabetical order.
Sample Script
PhoneBook phoneBook = new PhoneBook();
phoneBook.add("Zebra", "111-222-333");
phoneBook.add("Dog", "222-444-4444");
phoneBook.display();
Dog 222-444-4444
Zebra 111-222-333
PhoneBook class to map names to lists of phone numbers.add() and remove() methods to handle adding or removing individual numbersremoveRecord method for removing an entire entry from your PhoneBook.