A queue is an Abstract data type.

In computer science, a queue is a collection of entities that are maintained in a sequence and can be modified by the addition of entities at one end of the sequence and the removal of entities from the other end of the sequence.

[…]

The operation of adding an element to the rear of the queue is known as enqueue, and the operation of removing an element from the front is known as dequeue. Other operations may also be allowed, often including a peek or front operation that returns the value of the next element to be dequeued without dequeuing it.

[…]

The operations of a queue make it a [First in, first out] (FIFO) data structure. In a FIFO data structure, the first element added to the queue will be the first one to be removed. […] Common implementations are circular buffers and linked lists.

(“Queue (Abstract Data Type)” 2022)

Types

Bibliography