akosiraff

Download TelephoneDirectory

Dec 20th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1.  
  2. Download: https://solutionzip.com/downloads/telephonedirectory/
  3. Write a Java menu-driven program that creates and manipulates a directory of names, telephone numbers, and home addresses. The following information will be stored for each person in the directory:
  4. – Name (Last, First)
  5. – Home address (street address, city, state, zip code) – Home telephone number
  6. Your program should use a Binary Search Tree data structure to store the directory and should be able to perform the following basic functions. The tree should remain a Binary Search Tree after each of the operations below:
  7. – Display the entire directory in sorted order by key value (combination of last and first names) – Search and display the contents of a particular entry
  8. – Delete an existing entry
  9. – Insert an entry
  10. – Save the entire directory to a file
  11.  
  12. Download: https://solutionzip.com/downloads/telephonedirectory/
Add Comment
Please, Sign In to add comment