Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Help with java. Thank you. 2. Describe a real world example of a queue and some psuedocode for a corresponding program to implement it. 3.

Help with java. Thank you.

image text in transcribed

2. Describe a real world example of a queue and some psuedocode for a corresponding program to implement it.

3. Define data structure in terms of computer science

Queue Implement a queue using an array in class. Make your queue size5 An array will need to handle wrap around Think about removing from the front of a full queue The queue will not be empty, but the items will be in indices 1, 2, 3 and 4 and index 0 will be free and the queue is not longer full It would be inefficient to move all elements up in the array. However, the head is now at 1 and the tail is at 4, so you would add the 5th item in index 0 .Queue) creates an empty queue, queue is new and empty .enqueue(item) adds a new item to the queue, queue is modified dequeue( removes and returns an item, queue is modified isEmpty) returns a boolean and tests for an empty queue, queue is not modified size) returns the int size of the queue, queue is not modified print) prints the queue from front to rear, queue is not modified peek0 prints the front element, queue is not modified Driver should print the results of the following .enqueue("dog") .enqueue("cat") . enqueue("mouse") .enqueue("pig") enqeue"bird") Size .enqueue(puppy") Size dequeue0 dequeue0 dequeue0 dequeue0 Size . peek0 dequeue0 Size . isEmpty(0

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

Database Administrator Limited Edition

Authors: Martif Way

1st Edition

B0CGG89N8Z

More Books

Students also viewed these Databases questions

Question

b. What are its goals and objectives?

Answered: 1 week ago

Question

Define Administration?

Answered: 1 week ago

Question

Define Decision making

Answered: 1 week ago

Question

What does Processing of an OLAP Cube accomplish?

Answered: 1 week ago