IN JAVA LANGUAGE
Linked List-Based Queue Implementation
Implement Queue using a Linked List.
Use the language library LinkedList
Queue methods will call the LinkedList methods
You can use string as the object
Instead of using an array, as the QueueLab did, here you will
use a Linked List from your language's library. Implement all the
methods of Stack : enqueue(), dequeue(), size(), printQueue(), etc,
using calls to the linked list methods that correspond to the
actions need. In the array...