Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Exercise 3: In the link implementation of queue program the following code is missing. Your task is to implement these codes and write a test

image text in transcribed

Exercise 3: In the link implementation of queue program the following code is missing. Your task is to implement these codes and write a test program to test the MyLinkedListQueue class. 1. Implement dequeue( ) and first () methods 2. Implement QueueEmptyException class to throw queue empty exception whenever user tries to deque an element from the empty queue. 3. Write a test application to run the MyLinkedListQueue class. Add few random Integers to the queue, check queue size and then remove elements from queue and print it on screen. Are the numbers printed in first in first out basis? 4. Using above implementation, create a queue of students (you can use Student class for it) and add five students to the queue. Then remove the students from queue and print their names on screen. Exercise 4: Assume that you are developing a network packet processing system. The system has to handle incoming packets in first come first serve basis. 1. Implement a Packet class (which contains a random unique integer id and a String text message) 2. Create 20 packet instances in a loop and add them to the Queue 3. Write a process function which removes the elements from queue and prints the message contained in the packet on screen if the unique id is an odd number

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

Informix Database Administrators Survival Guide

Authors: Joe Lumbley

1st Edition

0131243144, 978-0131243149

More Books

Students also viewed these Databases questions

Question

1. What are the goods and services going to be produced?

Answered: 1 week ago