Given a ListItem class, complete main() using the built-in list type to create a linked list called shoppingList. The program should read items from input (ending with -1), adding each item to shoppingList, and output each item in shoppingList using the PrintNodeData() function. EX INPUT milk bread eggs waffles cereal -1 Ex OUTPUT milk bread eggs waffles cereal   main.cpp #include "ListItem.h" #include #include #include using namespace std; int main (int argc, char* argv[]) { // TODO: Declare a list called shoppingList of type ListItem string item; // TODO: Read inputs (items) and add them to the shoppingList list // Read inputs until a -1 is input // TODO: Print the shoppingList list using the PrintNodeData() function return 0; }   ListItem.h (marked as read only) #ifndef LISTITEMH #define LISTITEMH #include using namespace std; class ListItem { public: ListItem(); ListItem(string itemInit); // Print this node void PrintNodeData(); private: string item; }; #endif   ListItem.cpp (read only) #include "ListItem.h" #include ListItem::ListItem() { item = ""; } ListItem::ListItem(string itemInit) { item = itemInit; } // Print this node void ListItem::PrintNodeData() { cout << item << endl; }

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

This is in C++.

Given a ListItem class, complete main() using the built-in list type to create a linked list called shoppingList. The program should read items from input (ending with -1), adding each item to shoppingList, and output each item in shoppingList using the PrintNodeData() function.

EX INPUT

milk

bread

eggs

waffles

cereal

-1

Ex OUTPUT

milk

bread

eggs

waffles

cereal

 

main.cpp

#include "ListItem.h"
#include <string>
#include <list>
#include <iostream>

using namespace std;

int main (int argc, char* argv[]) {
// TODO: Declare a list called shoppingList of type ListItem

string item;

// TODO: Read inputs (items) and add them to the shoppingList list
// Read inputs until a -1 is input


// TODO: Print the shoppingList list using the PrintNodeData() function

return 0;
}

 

ListItem.h (marked as read only)

#ifndef LISTITEMH
#define LISTITEMH

#include <string>

using namespace std;

class ListItem {
public:
ListItem();

ListItem(string itemInit);

// Print this node
void PrintNodeData();

private:
string item;
};

#endif

 

ListItem.cpp (read only)

#include "ListItem.h"
#include <iostream>

ListItem::ListItem() {
item = "";
}

ListItem::ListItem(string itemInit) {
item = itemInit;
}

// Print this node
void ListItem::PrintNodeData() {
cout << item << endl;
}

 

 

Thank you

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

why could you use while(true) without setting a boolean to true?

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

Expert Answers to Latest Homework Questions

Q: A graphing calculator is recommended. For the limit lim (x³ − 2x + 2) = 6, illustrate this…
Q: They are both one question. Please help on grah and fill in the blanks
Q: Identify a question about child or adolescent development that you would like to see researched and…
Q: A company has four divisions. Division A has sales, variable expenses and traceable fixed expenses…
Q: I remember a day in Northern Minnesota when I was a little girl and schoolwas cancelled because it…
Q: QUESTION 13 Which of the following can initiate the extrinsic pathway of hemostasis? tissue damage…
Q: Please original work Talk about each term: Planned Value (PV) Earned Value (EV) Schedule Variance…
Q: (b) Which country has the highest growth rate of GDP per capita in 2024?
Q: You have the following data to work with, all from the year 2024. In each country, the value of…
Q: i need help creating a graph showiung the 3 different  polynomial treadlines for each data set:  1:…
Q: Find the volume of the space inside the two cylinders. 101 Find the volume of the prism below 8 ft…
Q: all 4 parts
Q: Please answer this problem in handwritting, NOT TYPED!!!
Q: Explain the meaning of the following equation. lim f(x) = 8 X-9 - ○ If |x₁ - 9| < |×2 − 9], then…
Q: QUESTION 8 Which of the following is a common cause of hypoproteinemia? O high protein diet O liver…
Q: QUESTION 20 The globin group of hemoglobin is made up of: O iron O bilirubin O bile O amino acids O…
Q: QUESTION 19 Which of the following is a breakdown product of RBCs that can lead to jaundice and…
Q: Please answer this problem in handwritting, NOT TYPED!!!
Q: QUESTION 16 Which of the following is not a cause or risk associated with polycythemia? O high blood…
Q: How does critical thinking help the nurse caring for patients?   2. What will you use as a guide for…
Q: Andretti Company has a single product called a Dak. The company normally produces and sells 84,000…