Question: IN C++ Coding exercise 1 Implement queues using a circular array Create a template called arrayQueue that implements a queue using an array in a
IN C++

Coding exercise 1 Implement queues using a circular array Create a template called arrayQueue that implements a queue using an array in a file called arrayQueue.h. The template should have the functionalities of enqueue, dequeue, front, size, maxSize, isEmpty, and isFul1 as described in the lecture. Remember to make sure that the array is circular, i.e., the queue wraps around the end of the array. Test the functionality of your queue in a file called main.cpp
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
