Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Build and use your own minimal queue class using an array of type String of fixed size. to hold the queue. a) Create a NetBeans

Build and use your own minimal queue class using an array of type String of fixed size. to hold the queue.

a) Create a NetBeans project and name it p5_4_your-id.

The array should have the default size of 5.

The array size should be setable via a constructor.

The following methods must be implemented:

A. enqueue inserts a value at the rear of the queue

B. dequeue returns the value at the front of the queue, removing the value from the queue

C. isEmpty returns true if the queue is empty, false otherwise

D. isFull - returns true if the queue is full, false otherwise

Tip: In a queue of 2 or more elements, the index of the rear is larger than the index of the front EXCEPT, the queue will need to wrap around the array. For example: If the array is 20 elements. the queue front is at index 15 and the queue rear is at index 19, the next enqueue will be at index 20, which doesn't exist. The index must wrap around the array, i. e. the next enqueue will be at index 0. The solution is to modulus by the array size whenever increasing an index, either rear of front. For example, to change the index of the rear to the next index,use the formula

rear = (rear + 1) % arraySize;

b) Add code to your project demonstrating the queue and all methods and constructors in the class work correctly.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Making Databases Work The Pragmatic Wisdom Of Michael Stonebraker

Authors: Michael L. Brodie

1st Edition

1947487167, 978-1947487161

More Books

Students also viewed these Databases questions

Question

2. How will the team select a leader?

Answered: 1 week ago