logo Hurry, Grab up to 30% discount on the entire course
Order Now logo

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Richard AlpertLaw
(5/5)

784 Answers

Hire Me
expert
Allen CrumpStatistics
(5/5)

825 Answers

Hire Me
expert
Peck KellerTechnical writing
(5/5)

765 Answers

Hire Me
expert
Martin BlumbergFinance
(5/5)

665 Answers

Hire Me
Java Programming

your task is to create your own generic Queue class using a LinkedList as the underlying data type a composition relationship

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

Linked List Queue

Introduction

A queue is an ADT that represents an ordered, First-In-First-Out (FIFO) collection.

  • An ordered collection maintains the insertion order of the

  • New elements can only be added to the back of the

  • Existing elements can only be removed from the front of the

A queue can be used in real-world modeling, such as keeping track of service requests so that they are handled in the order they arrived. It can also be used internally in computer functions, such as storing printer requests in a print queue.

The basic methods for a queue are as follows:

  • enqueue(value) – adds the value to the back of the

  • dequeue() – removes the next available value from the front of the queue and reports the

  • isEmpty() – reports if the queue is empty. Other convenience methods are usually added:

  • front() – returns the value at the front of the queue without removing

  • size() – returns the number of values currently stored in the

Java’s LinkedList and ArrayDeque concrete classes implement the queue ADT, but they also include many other methods that do not prevent the access to data that should not be accessible in a pure queue implementation.

Lab Overview

In Lab 2 your task is to create your own generic Queue class using a LinkedList as the underlying data type (a composition relationship.) This type of relationship allows you to hide LinkedList methods that are not applicable to a queue.

In the Project 2 module you are given a NetBeans project that contains the following classes:

  • An interface named PureQueue that defines the ADT described

  • A data-management class called Queue that implements the PureQueue interface. (This class is currently mostly )

  • A JUnit test class that tests the Queue class. (Found under TestPackages/cs143.)

 

Your job is to complete the Queue class. The following requirements and limitations apply:

  • You must use a Java LinkedList as your underlying data

  • You must make the Queue class generic so that it accepts any type of

  • You may not alter the JUnit test code in any

  • You must add method comments to the concrete class methods even if they override PureQueue methods that have method

Note that the method implementations are very simple. The hardest part will be studying the LinkedList methods and determining the best ones to call to fit the needs of the given Queue methods.

 

Group Work

For the first week, you must work on this lab individually. Get it working the best you can. Use the test class to help you determine if you have succeeded. Do not alter any of the code that has been provided for you or add any other fields or methods. Just complete TODO sections with the correct code.

Bring your code to class the first day of the second week. You will then be assigned a group, and that group will have a Google Sheets document to share. Post your code in the correct cell for each of the methods listed in the column with your name at the top. Then meet with your group and compare solutions. Choose the best solution or create a new solution out of a combination of your code. Place the code in the “final version” column.

Now open a clean version of the NetBeans project, and copy and paste the final code solutions into the proper methods. Go back and review the requirements and limitations of this lab. Run the JUnit test and debug as necessary. Clean up indentation and spacing, and make sure you have named variables using proper Java naming conventions. When you are satisfied with your work, zip up the NetBeans project and submit it to the Lab 2 assignment. Do not edit or delete your Google Sheets work, as this will be used for part of your grade.

Your last job is to rank the members of your group. This is done individually. Find the Lab 2 Ranking survey and follow the instructions to rank how knowledgeable and helpful each group member was during this lab. This ranking will not impact anyone’s grade. It will only be used to help determine the makeup of future groups.

Related Questions

. The fundamental operations of create, read, update, and delete (CRUD) in either Python or Java

CS 340 Milestone One Guidelines and Rubric  Overview: For this assignment, you will implement the fundamental operations of create, read, update,

. Develop a program to emulate a purchase transaction at a retail store. This  program will have two classes, a LineItem class and a Transaction class

Retail Transaction Programming Project  Project Requirements:  Develop a program to emulate a purchase transaction at a retail store. This

. The following program contains five errors. Identify the errors and fix them

7COM1028   Secure Systems Programming   Referral Coursework: Secure

. Accepts the following from a user: Item Name Item Quantity Item Price Allows the user to create a file to store the sales receipt contents

Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip

. The final project will encompass developing a web service using a software stack and implementing an industry-standard interface. Regardless of whether you choose to pursue application development goals as a pure developer or as a software engineer

CS 340 Final Project Guidelines and Rubric  Overview The final project will encompass developing a web service using a software stack and impleme