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: The beam is supported by a roller at B and a pin at C and is subjected to the distributed load shown…
Q: The beam is supported by a pin at B and a roller at D. The applied loads shown in the figure have…
Q: The simply supported beam is subjected to the force F-600 N and the uniform distributed load with…
Q: How can I describe the latest forensic psychological treatment literature about non-violent…
Q: The buying price of fan motors from a local manufacturer is represented by b(x)=(360/x), where x is…
Q: 1. In guinea pigs, Cavia porcellus, the allele for short hair is dominant. A. Show the cross for a…
Q: "You have recently been hired to improve the performance of Multiplex Corporation which has been…
Q: Until​ recently, all area codes had a 0 or a 1 as the middle digit and the first digit could not be…
Q: "On average, a firm sells $2,500,000 in merchandise a month. Its cost of goods sold equals 80…
Q: Lake of the Ozarks, in central Missouri, is approximately 23,067,100,000,000 square meters. Big…
Q: The Dogs and Drinks vendor sells three different kinds of foot-long hot dogs. Plain dogs sell for…
Q: Some people believe that when making decisions, the more information one has, the better. Discuss…
Q: The figure to the right shows the production possibilities frontier for Vidalia, a nation that…
Q: When a plant breeder crossed two red roses, 78% of the offspring had red flowers and 22% had white…
Q: A homozygous round seeded plant is crossed with a homozygous wrinkle seeded plant.  What are the…
Q: 1. A TT (tall) pea plant is crossed with a tt (short) plant. Show steps in the table…
Q: 1. A TT (tall) pea plant is crossed with a tt (short) plant.…
Q: Perform the calculations below and give the results with correct significant figures. 31.816 g +…
Q: A 330 mg piece of gold (density = 19.3 gcm3) is hammered into a sheet of gold leaf that has a length…
Q: 1. A TT (tall) pea plant is crossed with a tt (short) plant.…
Q: Which transition corresponds to an electron captured into orbit in the electron cloud of the  atom?…