Just like the StackAsLinkedList class, the implementation of the QueueAsLinkedList class requires only one member variable--list. The variable list is a linked list of pointers to Objects. It is used to keep track of the elements in the queue.