Mexi 775be79ec7 work in progress | 6 yıl önce | |
---|---|---|
.gitignore | 6 yıl önce | |
PhoneBook.java | 6 yıl önce | |
PhoneBookTest.java | 6 yıl önce | |
PhoneBookUML.png | 6 yıl önce | |
README.TXT | 6 yıl önce | |
README.md | 6 yıl önce | |
package.bluej | 6 yıl önce |
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)
name
reverseLookup(String phoneNumber)
phoneNumber
display()
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.