logo CodeStepByStep logo

switchPairs

Language/Type: C++ Vector collections
Related Links:

Write a function named switchPairs that switches the order of values in a Vector of integers in a pairwise fashion. Your function should accept as a parameter a reference to a Vector of integers and should switch the order of the first two values, then switch the order of the next two, switch the order of the next two, and so on. For example, if the vector initially stores {1, 4, 8, -3, 2, 7}, then your function should switch the first pair, (1 and 4), the second pair (8 and -3) and the third pair (2 and 7) to yield {4, 1, -3, 8, 7, 2}.

If there are an odd number of values in the list, the final element is not moved. For example, if the original list had been {1, 2, 3, 4, 5}, then the result would be {2, 1, 4, 3, 5}.

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.