Lab 11

For this lab you will be writing the operations for an array based queue. The class ArrayBasedQueue will have a statically sized template array, and three integer member variables front, back, count. The class will also contain a default constructor, and queue based operations described below which you will write for this lab. Main is given to you and the class definition. Memorize the acronym FIFO for the upcoming midterm and that this behavior applies to the data structure Queue.


lab11.cpp




Show me your completed code in class or have the file lab11.cpp within your depository directory ~/2020/wk11/