Question: Write the function copy queue that takes a queue type as its argument and returns another queue type as its result. The return queue must

Write the function copy queue that takes a queue type as its argument and returns another queue type as its result. The return queue must contain all of the items in the original queue in the same order that they were found in the original queue The original queue must end up unchanged Algorithm: - store the number of element in the first queue -dequeue element from the first queue and store it in a variable. - enqueue the stored item in both the copy and the first queue. hint: LinkedQueue class has to string method so you can directly print queue elements by calling queue name in print statement.

code:

Queue first =new LinkedQueue(); } public static Queue copyQ(Queue first){ } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!