In C++
In this lab we will be creating a stack class and a queue class,
both with a hybrid method combining linked list and arrays in
addition to the Stack methods(push, pop, peek, isEmpty, size,
print) and Queue methods (enqueue, deque, peek, isEmpty, size,
print).
DO NOT USE ANY LIBRARY, implement each method from scratch.
Both the Stack and Queue classes should be generic classes.
Don't forget to comment your code.