logo CodeStepByStep logo

stutter

Language/Type: Java Queue collections
Related Links:

Write a method named stutter that accepts a queue of integers as a parameter and replaces every element with two copies of itself. For example, if a queue named q stores {1, 2, 3}, the call of stutter(q); should change it to store {1, 1, 2, 2, 3, 3}.

Constraints: Do not use any auxiliary collections as storage.

Method: Write a Java method as described, not a complete program or class.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.