logo CodeStepByStep logo

stutter

Language/Type: C++ queue collections STL
Related Links:

Write a function named stutter that accepts a reference to 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.

Function: Write a C++ function as described, not a complete program.

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.