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;
}
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 3 images