Question: Phone Book Problem: A Simple program is needed to keep track phone numbers. This program should allow you to enter a contact name and find

Phone Book
Problem: A Simple program is needed to keep track phone numbers. This program should allow you to enter a contact name and find that contacts phone number. When a contact is found, it is considered the current contact. The current contacts Phone number can be changed if needed. The Current contact may also be deleted. Names are considered Primary Key data in this structure and may not be duplicated or manipulated. Program should also allow you to print an alphabetical listing of contacts by last name, first name.
Design:
An interactive menu should give the following options:
Find Contact
Display current contact
Add Contact
Delete Current Contact
Display Contact List
Use a Binary Sorting Tree Data structure. Each node in the tree will be a contact object that holds the last name, the first name and the phone number of the contact. Additionally there are left and right pointers to additional contacts.
The Address Book object will manage the tree (add, sort, read and delete nodes). The find function will search for a last name first name combination, if found it will set the current pointer to that contact and return a true value. Display Current will display the first and last name and the phone number of the current node.
Use C++ programming!
 Phone Book Problem: A Simple program is needed to keep track

Class Diagram: PhoneBook Attributes- Contact "root Contact current Methods PhoneBook0 bool addContact(string last, string first, string phonel bool removeContact(string last,string firs t) bool findContact(string last, string firs t) oid Dis playCurrent void Dis playList0 Contact Attributes string lastName string firstname string phone Contact left Contact right Methods Contact(string last, string first, string phone) string get ast Na me (0 string getFirst Na me 0: string getFullN ame0 string ge tN umber) bool setNumber(string number)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!