Create, compile, and run a program that manages a linked list. Specifically, create a linked list for the store's inventory. Put at least 12 items in the list. Ask for an item by SKU number. If the item is not in the inventory, just say so. If it is in the inventory, tell the item's name, cost and quantity on hand. Data fields are: Name SKU number Cost of item Quantity on hand Data fields are: Name, SKU number, Cost of item, Quantity on hand For this lab, you will need to use the files BagInterface.java, Item.java, and LinkedBag.java. You should modify Item.java. Also, you should rename it. You can model your code on OnlineShopper.java. You only need to submit any of those files if you change them. Also, please submit a list of the grocery items as a text file along with your code.

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
### Lab Assignment: Linked List Inventory Management

**Objective:**
Create, compile, and run a program that manages a linked list. Specifically, create a linked list for the store’s inventory.

**Instructions:**
1. Put at least 12 items in the list.
2. Ask for an item by SKU number.
    - If the item is not in the inventory, just say so.
    - If it is in the inventory, tell the item’s name, cost, and quantity on hand.

**Data Fields:**
- Name
- SKU number
- Cost of item
- Quantity on hand

**Data fields reiterated:**
- Name
- SKU number
- Cost of item
- Quantity on hand

**File Requirements:**
For this lab, you will need to use the following files:
- `BagInterface.java`
- `Item.java`
- `LinkedBag.java`

**Modifications:**
- Modify `Item.java`. Additionally, you should rename it.
- You can model your code on `OnlineShopper.java`.

**Submission Guidelines:**
- You only need to submit any of the above files if you change them.
- Submit a list of the grocery items as a text file along with your code.
Transcribed Image Text:### Lab Assignment: Linked List Inventory Management **Objective:** Create, compile, and run a program that manages a linked list. Specifically, create a linked list for the store’s inventory. **Instructions:** 1. Put at least 12 items in the list. 2. Ask for an item by SKU number. - If the item is not in the inventory, just say so. - If it is in the inventory, tell the item’s name, cost, and quantity on hand. **Data Fields:** - Name - SKU number - Cost of item - Quantity on hand **Data fields reiterated:** - Name - SKU number - Cost of item - Quantity on hand **File Requirements:** For this lab, you will need to use the following files: - `BagInterface.java` - `Item.java` - `LinkedBag.java` **Modifications:** - Modify `Item.java`. Additionally, you should rename it. - You can model your code on `OnlineShopper.java`. **Submission Guidelines:** - You only need to submit any of the above files if you change them. - Submit a list of the grocery items as a text file along with your code.
### Java Program to Search for an Item in a LinkedList

In this tutorial, we will explore a Java program that uses a `LinkedList` to store and search for items. This program prompts the user to enter the name of an item and then checks if the item exists in the list. If the item is found, it displays the item's details such as name, SKU number, unit cost, and quantity on hand.

#### Code Explanation

```java
import java.util.LinkedList;
import java.util.Scanner;

public class MyLL
{
    public static void main(String[] args)
    {
        String newitem;

        LinkedList<Item> l = new LinkedList<Item>();

        l.add(new Item("soap", "1234567890", 10.5));
        l.add(new Item("bag", "0987654321", 20.8));
        l.add(new Item("spoon", "9876565431", 22.8));
        l.add(new Item("wallet", "1234654321", 25.6));
        l.add(new Item("lighter", "99812344321", 28.10));
        l.add(new Item("purse", "9977614321", 26.21));
        l.add(new Item("book", "9876745321", 7.8));
        l.add(new Item("pen", "0187254321", 17.12));
        l.add(new Item("laptop", "938563321", 1000.7));
        l.add(new Item("mobile", "0987168881", 500.9));
        l.add(new Item("basket", "0982653341", 20.81));
        l.add(new Item("television", "998794929", 1020.6));

        System.out.println("Please enter the item that you want to search in the list");
        Scanner sc = new Scanner(System.in);
        newitem = sc.next();

        for(Item i : l)
        {
            if(i.item_name.equals(newitem))
            {
                System.out.println("The item is present in the list, here are the details:");
                System.out.println("Item name: " + i.item_name);
                System.out.println("SKU Number: " + i.SKU);
                System.out.println("Unit Cost: " + i.unit_cost);
                System.out.println("Quantity on hand: " + i.quantity_on_hand);
Transcribed Image Text:### Java Program to Search for an Item in a LinkedList In this tutorial, we will explore a Java program that uses a `LinkedList` to store and search for items. This program prompts the user to enter the name of an item and then checks if the item exists in the list. If the item is found, it displays the item's details such as name, SKU number, unit cost, and quantity on hand. #### Code Explanation ```java import java.util.LinkedList; import java.util.Scanner; public class MyLL { public static void main(String[] args) { String newitem; LinkedList<Item> l = new LinkedList<Item>(); l.add(new Item("soap", "1234567890", 10.5)); l.add(new Item("bag", "0987654321", 20.8)); l.add(new Item("spoon", "9876565431", 22.8)); l.add(new Item("wallet", "1234654321", 25.6)); l.add(new Item("lighter", "99812344321", 28.10)); l.add(new Item("purse", "9977614321", 26.21)); l.add(new Item("book", "9876745321", 7.8)); l.add(new Item("pen", "0187254321", 17.12)); l.add(new Item("laptop", "938563321", 1000.7)); l.add(new Item("mobile", "0987168881", 500.9)); l.add(new Item("basket", "0982653341", 20.81)); l.add(new Item("television", "998794929", 1020.6)); System.out.println("Please enter the item that you want to search in the list"); Scanner sc = new Scanner(System.in); newitem = sc.next(); for(Item i : l) { if(i.item_name.equals(newitem)) { System.out.println("The item is present in the list, here are the details:"); System.out.println("Item name: " + i.item_name); System.out.println("SKU Number: " + i.SKU); System.out.println("Unit Cost: " + i.unit_cost); System.out.println("Quantity on hand: " + i.quantity_on_hand);
Expert Solution
steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
Threads in linked list
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
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