Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

( a ) Below, write the content of a non - empty queue Q by filling in the following blank ( with a list of

(a) Below, write the content of a non-empty queue Q by filling in the following blank (with a list of integers)
such that calling ReverseAndRemoveOdds(Q) gives a WRONG result without raising any exception.
The size of the queue must be less than or equal to 5. If such an input does not exist, write
"IMPOSSIBLE" in the blank.
Q: (fron
k)
(b) Below, write the content of a non-empty queue Q by filling in the following blank (with a list of integers)
such that calling ReverseAndRemoveOdds(Q) gives a CORRECT result without raising any exception.
The size of the queue must be less than or equal to 5. If such an input does not exist, write
"IMPOSSIBLE" in the blank.
Q: (frc
:k)
(c) Below, write the content of a non-empty queue Q by filling in the following blank (with a list of integers)
such that calling ReverseAndRemoveOdds(Q) will result in a "maximum levels of recursion exceeded"
error. The size of the queue must be less than or equal to 5. If such an input does not exist, write
"IMPOSSIBLE" in the blank.
Q: (front
ack)Below is an attempt to implement a ReverseAndRemoveOdds(Q) operation on a queue Q. The method is supposed to reverse the order of the items in the queue as well as removing all the odd numbers. However, the pseudocode is buggy.
Below is an example of a queue Q before and after ReverseAndRemoveOdds(Q) if the method worked correctly.
BEFORE: (front)3,1,4,1,5,2,6(back)
AFTER: (front)6,2,4(back)
/*
Assume the following behaviour of the Queue methods.
Enqueue(item): enqueue at the back of the queue
Dequeue(): dequeue at the front. Raise an exception if the queue is empty.
IsEmpty(): returns whether the queue is empty.
*/
void ReverseAndRemoveOdds(Q){ x = Q.Dequeue(); Helper(Q, x);
return;
}
void Helper(Q, item){ if (Q.isEmpty()){
return;
}
x = Q.Dequeue(); Helper(Q, x);
if (item is even){ Enqueue(item);
}
return;
}
(a) Below, write the content of a non-empty queue Q by filling in the following blank (with a list of integers) such that calling ReverseAndRemoveOdds(Q) gives a WRONG result without raising any exception.
The size of the queue must be less than or equal to 5. If such an input does not exist, write
IMPOSSIBLE in the blank.
Q: (front)(back)
(b) Below, write the content of a non-empty queue Q by filling in the following blank (with a list of integers) such that calling ReverseAndRemoveOdds(Q) gives a CORRECT result without raising any exception.
The size of the queue must be less than or equal to 5. If such an input does not exist, write
IMPOSSIBLE in the blank.
Q: (front)(back)
(c) Below, write the content of a non-empty queue Q by filling in the following blank (with a list of integers) such that calling ReverseAndRemoveOdds(Q) will result in a maximum levels of recursion exceeded error. The size of the queue must be less than or equal to 5. If such an input does not exist, write
IMPOSSIBLE in the blank.
Q: (front)(back)
image text in transcribed

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

Intelligent Information And Database Systems 6th Asian Conference Aciids 2014 Bangkok Thailand April 7 9 2014 Proceedings Part I 9 2014 Proceedings Part 1 Lnai 8397

Authors: Ngoc-Thanh Nguyen ,Boonwat Attachoo ,Bogdan Trawinski ,Kulwadee Somboonviwat

2014th Edition

3319054759, 978-3319054759

More Books

Students also viewed these Databases questions