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: Moving only left and down, how many paths are there from X to H? H X
Q: please step by step solution.
Q: Hi I'm using turtle(trinket.io) and I'm having trouble explaining what happens with each Line and…
Q: The charges of putting products into a saleable condition ought to be charged to A. Balance Sheet B.…
Q: A miniature volcano is made in the laboratory with ammonium dichromate. When ignited, it decomposes…
Q: Please don't provide handwritten solution ...
Q: Water is at a temperature of 30 degrees C. Plot the height h of the water as a function of the gap w…
Q: How might racism, cultural exclusion, and/or cultural destruction form a barrier to efforts of…
Q: A moon rock collected by a U.S. Apollo mission is estimated to be 4.00 billion years old by…
Q: please step by step solution.
Q: 3) Find the angle between 0° and 360° that is coterminal with the angle 1928°. fast is the car…
Q: 13) Convert the Cartesian coordinates (8,-15) = (x, y) to polar coordinates (r,) in a few ways: a) r…
Q: Please don't provide handwritten solution ....
Q: 5. Give the product of this Michael addition. Ph Ph MeO OMe NaOMe, MeOH
Q: 4. Predict the product of the following aldol condensation reaction which produces a ẞ-…
Q: 1-3. Give the major product of these reactions. a) LDA, -78 °C, ether b) NaOMe, MeBr (1 equiv) MeOH…
Q: Please don't provide handwritten solution ....
Q: 4) The wheels of a car have circumference 45 inches and are traveling at 400 rotations per minute.…
Q: 5) If tan(0) = 12 5 - and << π, find sin (0), cos(0), sec (0), csc (0), cot (0).
Q: 7) Simplify sin (cos-1 (2x)) to an expression involving no trig or inverse trig functions. (Assume…
Q: 11) Prove each identity: a) cos(a+b) cos(a)cos (b) b) 2 sec2(t)= - 1 tan(a) tan (b) 1-sin(t) cos²(t)…