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; }
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;
}
![](/static/compass_v2/shared-icons/check-mark.png)
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 3 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)