Question: For Queue the functions are: enqueue, dequeue, isEmpty. For Stack the functions are: push , pop, isEmpty. Write a function void reverse_queue( queue_t* queue )
For Queue the functions are: enqueue, dequeue, isEmpty.
For Stack the functions are: push, pop, isEmpty.
Write a function void reverse_queue(queue_t* queue) * The function gets a queue and reverses the order of the elements in queue.
Write a function void reverse_stack(stack_t* stack) * The function gets a stack and reverses the order of the elements in the stack.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
