Problem Solving with C++ plus MyProgrammingLab with Pearson eText-- Access Card Package (9th Edition)
Problem Solving with C++ plus MyProgrammingLab with Pearson eText-- Access Card Package (9th Edition)
9th Edition
ISBN: 9780133862218
Author: Walter Savitch
Publisher: PEARSON
bartleby

Videos

Textbook Question
Book Icon
Chapter 13, Problem 1P

The following program creates a linked list with three names:

  #include <iostream>

  #include <string>

  using namespace std;

  struct Node

  {

  string name;

  Node *link;

  };

  typedef Node* NodePtr;

  int main()

  {

  NodePtr listPtr, tempPtr;

  listPtr = new Node;

  listPtr–>name = “Emily”;

  tempPtr = new Node;

  tempPtr–>name = “James”;

  listPtr–>link = tempPtr;

  tempPtr–>link = new Node;

  tempPtr = tempPtr–>link;

  tempPtr–>name = “Joules”;

  tempPtr–>link = NULL;

  return 0;

  }

Add code to the main function that:

  1. a. Outputs in order all names in the list.
  2. b. Inserts the name “Joshua” in the list after “James” then outputs the modified list.
  3. c. Deletes the node with “Joules” then outputs the modified list,
  4. d. Deletes all nodes in the list.
Expert Solution & Answer
Check Mark
Program Plan Intro

Creation of program to produce a linked list and perform operations

Program Plan:

  • Define a structure “Node” with member variable and link to another node.
  • Define a method “displayList()” to display nodes present in the list.
    • Perform a loop operation until list reaches null.
    • Display name of node and move to next node.
    • Continue this process until list reaches null.
  • Define a method “insertNameAfter()” to insert a name after a particular name.
    • Perform a loop operation until list reaches null.
    • Compare each word with given name.
    • If required name is reached, insert new name after the given name.
    • Update the next node pointer.
  • Define a method “deleteNameList()” to delete a particular name in list.
    • Perform a loop operation until list reaches null.
    • Compare each word with given name.
    • If required name is reached, delete name.
    • Update the next node pointer.
  • Define a method “deleteAllNodes()” to delete all nodes in list.
    • Declare variables that are required for program.
    • Perform a loop operation until list reaches null.
    • Assign “head” to a temporary variable.
    • Move to next node.
    • Delete the “head” of linked list.
  • Define a main method to perform operations on list.
    • Declare variables that are required for program.
    • Define nodes and assign values.
    • Call method “displayList()” to display nodes in list.
    • Call method “insertNameAfter()” to insert a name after a particular name.
    • Call method “deleteNameList()” to delete a particular name in list.
    • Call method “deleteAllNodes()” to delete all nodes in list.
Program Description Answer

Program Description:

The following C++ program describes about creation of program to create a linked list and perform operations on list.

Explanation of Solution

Program:

//Include libraries

#include <iostream>

#include <string>

//Use namespace

using namespace std;

//Define a structure

struct Node

{

//Declare member variable

string name;

//Declare link

Node *link;

};

//Define instance

typedef Node* NodePtr;

//Define a method displayList()

void displayList(NodePtr head)

{

//Loop until empty

while(head!=NULL)

{

//Display value

cout<<head->name<<" ";

//Move to next node

head=head->link;

}

//New line

cout<<endl;

}

//Define method insertNameAfter()

void insertNameAfter(NodePtr head,string sName, string newName)

{

//Declare variable

NodePtr temp;

//Create instance of node

temp=new Node;

//Assign value

temp->name=newName;

//Assign null value

temp->link=NULL;

//Loop until it reaches null

while(head!=NULL)

{

//If condition satisfies

if(head->name.compare(sName)==0)

{

//Assign value

temp->link=head->link;

//Assign value

head->link=temp;

//Break

break;

}

//Assign value

head=head->link;

}

}

//Define method deleteNameList()

void deleteNameList(NodePtr head,string sName)

{

//Declare variable

NodePtr prev=NULL;

//Loop until it reaches null

while(head!=NULL)

{

//If condition satisfies

if(head->name.compare(sName)==0)

{

//Assign value

prev->link=head->link;

//Delete

delete head;        

//Break

break;

}

//Assign value

prev=head;

//Assign value

head=head->link;

}

}

//Define method deleteAllNodes()

void deleteAllNodes(NodePtr head)

{

//Declare variable

NodePtr temp;

//Loop

while(head)

{

//Assign value

temp=head;

//Move to next value

head=head->link;

//Delete node

delete temp;   

}

}

//Define main method

int main()

{

//Declare variables

NodePtr listPtr,tempPtr;

//Create new instance

listPtr =new Node;

//Assign value

listPtr->name="Emily";

//Create new node

tempPtr=new Node;

//Assign value

tempPtr->name="James";

//Assign value

listPtr->link=tempPtr;

//Create new node

tempPtr->link=new Node;

//Move to next value

tempPtr=tempPtr->link;

//Assign value

tempPtr->name="Joules";

//Assign null value

tempPtr->link=NULL;

//Display message

cout<<"All Names in the list are: "<<endl;

//Call method displayList()

displayList(listPtr);

//Call method insertNameAfter()

insertNameAfter(listPtr,"James","Joshua");

//Display message

cout<<"Output modified list after Insert Joshua are:"<<endl;

//Call method displayList()

displayList(listPtr);

//Call method deleteNameList()

deleteNameList(listPtr,"Joules");

//Display message

cout<<"Output modified list after deleting Joshua are:"<<endl;

//Call method displayList()

displayList(listPtr);

//Call method deleteAllNodes()

deleteAllNodes(listPtr);

//Pause console window

system("pause");

//Return

return 0;

}

Sample Output

All Names in the list are:

Emily James Joules

Output modified list after Insert Joshua are:

Emily James Joshua Joules

Output modified list after deleting Joshua are:

Emily James Joshua

Press any key to continue . . .

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Students have asked these similar questions
Question: struct node  {  char *name;  int marks;  node *next;  };  By using the above declaration for the Linked List, write a program in C++ to display the summary report regarding the pass/fail ratio of the subject Data Structure for the class BSI-3 that have only 15 students.  The required Report Summary for the exam will be like wise:  The No. of A grades........???  The No. of B grades........???  And so on by applying the grading criteria of COMSATS-University Islamabad. Question: struct node  {  char *name;  int marks;  node *next;  };  By using the above declaration for the Linked List, write a program in C++ to display the summary report regarding the pass/fail ratio of the subject Data Structure for the class BSI-3 that have only 15 students.  The required Report Summary for the exam will be like wise:  The No. of A grades........???  The No. of B grades........???  And so on by applying the grading criteria of COMSATS-University Islamabad.
1. Struct (Optional: 1 point)1) Use the following abstract data type called Rectangle to get the length and width from the user. 2) Display the length, width, area, perimeter, and whether the rectangle is a square.struct Rectangle{float length;float width;float area;float perimeter;};2. Linked List (Optional: 1 point)Modify the following program to make a node containing data values of int, char, and string:#include <iostream>using namespace std;struct Node { int data; struct Node *next; };struct Node* head = nullptr; //or NULL or 0;void insert(int new_data) { struct Node* new_node = (struct Node*) new (struct Node); new_node->data = new_data; new_node->next = head; head = new_node; } void display() { struct Node* ptr;ptr = head;while (ptr != NULL) { cout<< ptr->data <<" "; ptr = ptr->next; } } int main() { insert(2);display(); return 0; } 1) Create a linked list of ten nodes (each node contains the three types of data values). 2) Display the data values…
Topic: Singly Linked ListImplement the following functions in C++ program. Read the question carefully.  (See attached photo for reference)    void isEmpty() This method will return true if the linked list is empty, otherwise return false. void clear() This method will empty your linked list. Effectively, this should and already has been called in your destructor (i.e., the ~LinkedList() method) so that it will deallocate the nodes created first before deallocating the linked list itself.

Additional Engineering Textbook Solutions

Find more solutions based on key concepts
Why were computer programming languages invented?

Starting Out With Visual Basic (8th Edition)

True or False: When you write a constructor for a class, it still has the default constructor that Java automat...

Starting Out with Java: From Control Structures through Data Structures (4th Edition) (What's New in Computer Science)

The statement or block that is repeated is known as the_______ of the loop.

Starting Out with C++: Early Objects (9th Edition)

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
SEE MORE 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
Introduction to Linked List; Author: Neso Academy;https://www.youtube.com/watch?v=R9PTBwOzceo;License: Standard YouTube License, CC-BY
Linked list | Single, Double & Circular | Data Structures | Lec-23 | Bhanu Priya; Author: Education 4u;https://www.youtube.com/watch?v=IiL_wwFIuaA;License: Standard Youtube License