A queue is a collection whose elements are added on one end and removed from the other.
Therefore a queue is managed in a FIFO fashion: first in, first out.
Insertions are at the rear (tail) of the queue and removals are at the front (head) of the queue.
To get the code, visit my GitHub page: https://github.com/ShurieJr/LinkedQue...