Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Ive seen similar post but all those builds fail, or are not executed correctly. If someone could help that would be very appreciated. 4.15 LAB:

Ive seen similar post but all those builds fail, or are not executed correctly.

If someone could help that would be very appreciated.

image text in transcribedimage text in transcribedimage text in transcribed

4.15 LAB: Warm up: Contacts 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. ContactNode.h - Class declaration ContactNode.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 InsertAfter0 (2 pts) o GetName) - Accessor (1 pt) GetPhoneNumber - Accessor (1 pt) o GetNext() - Accessor (1 pt) Print ContactNode Private data members o string contactName o string contact PhoneNum 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 (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 290724.1632830 LAB ACTIVITY 4.15.1: LAB: Warm up: Contacts 0/9 Current file: main.cpp Load default template... main.cpp ContactNode.cpp 1 #include 2 using namespace std; 3 4 int main() { 5 6 /* Type your code here. */ 7 8 return 0; 9} 10 ContactNode.h

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

Big Data, Mining, And Analytics Components Of Strategic Decision Making

Authors: Stephan Kudyba

1st Edition

1466568704, 9781466568709

More Books

Students also viewed these Databases questions