This document describes dynamically linked queues. It defines a Queue class with an item and link field. It shows how to add an item to the rear of the queue by creating a new Queue node, linking it to the current rear, and updating the rear pointer. It also shows how to delete from the rear by getting the front node, returning its item, and updating front to the next node. Diagrams illustrate the queue changes during add and delete operations.