瀏覽代碼

Update README.md

Nhu Nguyen 6 年之前
父節點
當前提交
17803adc98
沒有帳戶連結到提交者的電子郵件
共有 1 個文件被更改,包括 6 次插入2 次删除
  1. 6
    2
      README.md

+ 6
- 2
README.md 查看文件

@@ -14,9 +14,13 @@ Your completed lab must be submitted via GitHub. Labs are not complete unless th
14 14
 
15 15
 ### Part I:
16 16
 
17
-Create a PhoneBook class that holds names and phone numbers in sorted order. You can use an associative data type (one which stores items as keys paired with values).
17
+Create a PhoneBook class that holds names and phone numbers. You can use an associative data type (one which stores items as keys paired with values).
18 18
 
19
-Your PhoneBook class should have a lookup() method which allows you to look up a person's phone number based on their name. PhoneBook should also have methods to add and remove entries, or to list all names or all entries (names an phone numbers).
19
+Your PhoneBook class should have the following method
20
+  * lookup(String name) -  allows you to look up a person's phone number based on their name
21
+  * add(String name, String phoneNumber) - add entry
22
+  * remove(String name) - remove entry
23
+  * display() - list all entries (names an phone numbers) in alphabetical order
20 24
 
21 25
 ### Part II:
22 26