William S.

asked • 03/02/21

How to Use A Linked List to Build a List of Contacts? (C++)

You will be building a linked list. Make sure to keep track of both the head and tail nodes.



(1) Create three files to submit.

  1. ContactNode.h - Class declaration
  2. ContactNode.cpp - Class definition
  3. main.cpp - main() function

(2) Build the ContactNode class per the following specifications:

  1. Parameterized constructor. Parameters are name followed by phone number.
  2. Public member functions
  3. InsertAfter() (2 pts)
  4. GetName() - Accessor (1 pt)
  5. GetPhoneNumber - Accessor (1 pt)
  6. GetNext() - Accessor (1 pt)
  7. PrintContactNode()
  8. Private data members
  9. string contactName
  10. string contactPhoneNum
  11. ContactNode* nextNodePtr


Ex. of PrintContactNode() output:

Name: Roxanne Hughes
Phone number: 443-555-2864


(3) In main(), prompt the user for three contacts and output the user's input. Create three ContactNodes and use the nodes to build a linked list. (2 pts)


Ex:

Person 1
Enter name:
Roxanne Hughes
Enter phone number:
443-555-2864
You entered: Roxanne Hughes, 443-555-2864

Person 2
Enter name:
Juan Alberto Jr.
Enter phone number:
410-555-9385
You entered: Juan Alberto Jr., 410-555-9385

Person 3
Enter name:
Rachel Phillips
Enter phone number:
310-555-6610
You entered: Rachel Phillips, 310-555-6610


(4) Output the linked list. (2 pts)


Ex:

CONTACT LIST
Name: Roxanne Hughes
Phone number: 443-555-2864

Name: Juan Alberto Jr.
Phone number: 410-555-9385

Name: Rachel Phillips
Phone number: 310-555-6610


1 Expert Answer

By:

Patrick B. answered • 03/03/21

Tutor
4.7 (31)

Math and computer tutor/teacher

Still looking for help? Get the right answer, fast.

Ask a question for free

Get a free answer to a quick problem.
Most questions answered within 4 hours.

OR

Find an Online Tutor Now

Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.