Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Here is the full assignment details if there is any futher questions This program needs to be completed in C++. (1) Create three files to

Here is the full assignment details if there is any futher questions

This program needs to be completed in C++.

(1) Create three files to submit.

Contacts.h - Class declaration

Contacts.cpp - Class definition

main.cpp - main() function

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

Parameterized constructor. Parameters are name followed by phone number.

Public member functions

InsertAfter() (2 pts)

GetName() - Accessor (1 pt)

GetPhoneNumber - Accessor (1 pt)

GetNext() - Accessor (1 pt)

PrintContactNode()

Private data members

string contactName

string contactPhoneNum

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-661 

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Concepts

Authors: David Kroenke, David Auer, Scott Vandenberg, Robert Yoder

8th Edition

013460153X, 978-0134601533

More Books

Students also viewed these Databases questions