logo CodeStepByStep logo

StutterStack

Language/Type: C# recursion StutterStack

Write a recursive method named StutterStack that accepts a Stack of integers as a parameter and replaces every value in the stack with two occurrences of that value. For example, suppose a stack named s stores these values, from bottom => top:

{13, 27, 1, -4, 0, 9}

Then the call of stutterstack(s); should change the stack to store the following values:

{13, 13, 27, 27, 1, 1, -4, -4, 0, 0, 9, 9}

Notice that you must preserve the original order. In the original stack the 9 was at the top and would have been popped first. In the new stack the two 9s would be the first values popped from the stack. If the original stack is empty, the result should be empty as well.

Constraints: Your solution must be recursive. Do not use any loops. Do not use any auxiliary collections or data structures to solve this problem.

Method: Write a C# 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.