Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions 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
Check Mark
Knowledge Booster
Background pattern image
Computer Science
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
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education