Challenge 3: Reversing First "k" Elements of Queue
Can you reverse the first "k" elements in a given queue?
We'll cover the following...
We'll cover the following...
Problem statement
Implement the function myQueue reverseK(myQueue queue, int k), which takes a queue and a number k as input and reverses the first k elements of the queue.
Input
The input is a queue and an integer k such that
0  ...