Using the given code, complete the linked list program using C++ and create the following following list: #include using namespace std; string name, gender; int age; Node *next; }*head, *node, *tmp; void displayList(Node *node){ while(node != NULL){ cout<<"Name: "<name<age<gender<next; } } //Insert 5 nodes to the linked list with the following data items: // name: Sam // age: 16 // gender: Female // name: Aristotle // age: 24 // gender: Male // name: Bernadette // age: 22 // gender: Fale // name: Andy // age: 19 // gender: Female // // name: Tifany // age: 19 // gender: Female //Procedures: //1. Use the data items as stated above. //2. Supply the missing codes by providing a way of inserting the nodes to the linked list // using the data items provided above. //3. DO NOT change the display function and the structure declaration, it is done for you. int main (){ system("clear"); //insert code here, please strictly put your codes here. //Do not change this part: node = head; displayList(node); return 0; }

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter7: Arrays
Section7.5: Case Studies
Problem 3E
icon
Related questions
Question

Using the given code, complete the linked list program using C++ and create the following following list:

#include <iostream>
using namespace std;
string name, gender;
int age;

Node *next;
}*head, *node, *tmp;

void displayList(Node *node){
while(node != NULL){
cout<<"Name: "<<node->name<<endl;
cout<<"Age: "<<node->age<<endl;
cout<<"Gender: "<<node->gender<<endl;
node = node->next;
}
}

//Insert 5 nodes to the linked list with the following data items:
// name: Sam
// age: 16
// gender: Female

// name: Aristotle
// age: 24
// gender: Male

// name: Bernadette
// age: 22
// gender: Fale

// name: Andy
// age: 19
// gender: Female
//
// name: Tifany
// age: 19
// gender: Female

//Procedures:
//1. Use the data items as stated above.
//2. Supply the missing codes by providing a way of inserting the nodes to the linked list
// using the data items provided above.
//3. DO NOT change the display function and the structure declaration, it is done for you.

int main (){
system("clear");

//insert code here, please strictly put your codes here.

//Do not change this part:
node = head;
displayList(node);

return 0;
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 3 images

Blurred answer
Knowledge Booster
Linked List Representation
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning