In
computer science
Computer science is the study of computation, automation, and information. Computer science spans theoretical disciplines (such as algorithms, theory of computation, information theory, and automation) to practical disciplines (includin ...
, 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. By convention, the end of the sequence at which elements are added is called the back, tail, or rear of the queue, and the end at which elements are removed is called the head or front of the queue, analogously to the words used when people line up to wait for goods or services.
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. This is equivalent to the requirement that once a new element is added, all elements that were added before have to be removed before the new element can be removed. A queue is an example of a
linear data structure, or more abstractly a sequential collection.
Queues are common in computer programs, where they are implemented as data structures coupled with access routines, as an
abstract data structure or in object-oriented languages as classes. Common implementations are
circular buffers and
linked lists.
Queues provide services in
computer science
Computer science is the study of computation, automation, and information. Computer science spans theoretical disciplines (such as algorithms, theory of computation, information theory, and automation) to practical disciplines (includin ...
,
transport
Transport (in British English), or transportation (in American English), is the intentional movement of humans, animals, and goods from one location to another. Modes of transport include air, land ( rail and road), water, cable, pipel ...
, and
operations research
Operations research ( en-GB, operational research) (U.S. Air Force Specialty Code: Operations Analysis), often shortened to the initialism OR, is a discipline that deals with the development and application of analytical methods to improve dec ...
where various entities such as data, objects, persons, or events are stored and held to be processed later. In these contexts, the queue performs the function of a
buffer.
Another usage of queues is in the implementation of
breadth-first search.
Queue implementation
Theoretically, one characteristic of a queue is that it does not have a specific capacity. Regardless of how many elements are already contained, a new element can always be added. It can also be empty, at which point removing an element will be impossible until a new element has been added again.
Fixed-length arrays are limited in capacity, but it is not true that items need to be copied towards the head of the queue. The simple trick of turning the array into a closed circle and letting the head and tail drift around endlessly in that circle makes it unnecessary to ever move items stored in the array. If n is the size of the array, then computing indices modulo n will turn the
array into a circle. This is still the conceptually simplest way to construct a queue in a high-level language, but it does admittedly slow things down a little, because the array indices must be compared to zero and the array size, which is comparable to the time taken to check whether an array index is out of bounds, which some languages do, but this will certainly be the method of choice for a quick and dirty implementation, or for any high-level language that does not have pointer syntax. The array size must be declared ahead of time, but some implementations simply double the declared array size when overflow occurs. Most modern languages with objects or
pointer
Pointer may refer to:
Places
* Pointer, Kentucky
* Pointers, New Jersey
* Pointers Airport, Wasco County, Oregon, United States
* The Pointers, a pair of rocks off Antarctica
People with the name
* Pointer (surname), a surname (including a list ...
s can implement or come with libraries for dynamic lists. Such
data structures may have not specified a fixed capacity limit besides memory constraints. Queue ''overflow'' results from trying to add an element onto a full queue and queue ''underflow'' happens when trying to remove an element from an empty queue.
A ''bounded queue'' is a queue limited to a fixed number of items.
There are several efficient implementations of FIFO queues. An efficient implementation is one that can perform the operations—en-queuing and de-queuing—in
O(1) time.
*
Linked list
**A
doubly linked list has O(1) insertion and deletion at both ends, so it is a natural choice for queues.
**A regular singly linked list only has efficient insertion and deletion at one end. However, a small modification—keeping a pointer to the ''last'' node in addition to the first one—will enable it to implement an efficient queue.
*A
deque implemented using a modified dynamic array
Queues and programming languages
Queues may be implemented as a separate data type, or maybe considered a special case of a
double-ended queue (deque) and not implemented separately. For example,
Perl
Perl is a family of two High-level programming language, high-level, General-purpose programming language, general-purpose, Interpreter (computing), interpreted, dynamic programming languages. "Perl" refers to Perl 5, but from 2000 to 2019 it ...
and
Ruby
A ruby is a pinkish red to blood-red colored gemstone, a variety of the mineral corundum (aluminium oxide). Ruby is one of the most popular traditional jewelry gems and is very durable. Other varieties of gem-quality corundum are called sapp ...
allow pushing and popping an array from both ends, so one can use push and shift functions to enqueue and dequeue a list (or, in reverse, one can use unshift and pop), although in some cases these operations are not efficient.
C++'s
Standard Template Library provides a "
queue
" templated class which is restricted to only push/pop operations. Since J2SE5.0, Java's library contains a interface that specifies queue operations; implementing classes include and (since J2SE 1.6) . PHP has a
SplQueueclass and third party libraries like
beanstalk'd and
Gearman.
Example
A simple queue implemented in
JavaScript
JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of Website, websites use JavaScript on the Client (computing), client side ...
:
class Queue
Purely functional implementation
Queues can also be implemented as a
purely functional data structure. There are two implementations. The first one only achieves
per operation ''on average''. That is, the
amortized time is
, but individual operations can take
where ''n'' is the number of elements in the queue. The second implementation is called a real-time queue
and it allows the queue to be
persistent with operations in O(1) worst-case time. It is a more complex implementation and requires
lazy lists with
memoization
In computing, memoization or memoisation is an optimization technique used primarily to speed up computer programs by storing the results of expensive function calls and returning the cached result when the same inputs occur again. Memoization ...
.
Amortized queue
This queue's data is stored in two
singly-linked lists named
and
. The list
holds the front part of the queue. The list
holds the remaining elements (a.k.a., the rear of the queue) ''in reverse order''. It is easy to insert into the front of the queue by adding a node at the head of
. And, if
is not empty, it is easy to remove from the end of the queue by removing the node at the head of
. When
is empty, the list
is reversed and assigned to
and then the head of
is removed.
The insert ("enqueue") always takes
time. The removal ("dequeue") takes
when the list
is not empty. When
is empty, the reverse takes
where
is the number of elements in
. But, we can say it is
amortized time, because every element in
had to be inserted and we can assign a constant cost for each element in the reverse to when it was inserted.
Real-time queue
The real-time queue achieves
time for all operations, without amortization. This discussion will be technical, so recall that, for
a list,
denotes its length, that ''NIL'' represents an empty list and
represents the list whose head is ''h'' and whose tail is ''t''.
The data structure used to implement our queues consists of three
singly-linked lists where ''f'' is the front of the queue, ''r'' is the rear of the queue in reverse order. The invariant of the structure is that ''s'' is the rear of ''f'' without its
first elements, that is
. The tail of the queue
is then almost
and
inserting an element ''x'' to
is almost
. It is said almost, because in both of those results,
. An auxiliary function
must then be called for the invariant to be satisfied. Two cases must be considered, depending on whether
is the empty list, in which case
, or not. The formal definition is
and
where
is ''f'' followed by ''r'' reversed.
Let us call
the function which returns ''f'' followed by ''r'' reversed. Let us furthermore assume that
, since it is the case when this function is called. More precisely, we define a lazy function
which takes as input three list such that
, and return the concatenation of ''f'', of ''r'' reversed and of ''a''. Then
.
The inductive definition of rotate is
and
. Its running time is
, but, since lazy evaluation is used, the computation is delayed until the results is forced by the computation.
The list ''s'' in the data structure has two purposes. This list serves as a counter for
, indeed,
if and only if ''s'' is the empty list. This counter allows us to ensure that the rear is never longer than the front list. Furthermore, using ''s'', which is a tail of ''f'', forces the computation of a part of the (lazy) list ''f'' during each ''tail'' and ''insert'' operation. Therefore, when
, the list ''f'' is totally forced. If it was not the case, the internal representation of ''f'' could be some append of append of... of append, and forcing would not be a constant time operation anymore.
See also
*
Circular buffer
*
Double-ended queue (deque)
*
Priority queue
*
Queuing theory
*
Stack (abstract data type) – the "opposite" of a queue: LIFO (Last In First Out)
References
General references
*
Further reading
*
Donald Knuth
Donald Ervin Knuth ( ; born January 10, 1938) is an American computer scientist, mathematician, and professor emeritus at Stanford University. He is the 1974 recipient of the ACM Turing Award, informally considered the Nobel Prize of computer ...
. ''
The Art of Computer Programming'', Volume 1: ''Fundamental Algorithms'', Third Edition. Addison-Wesley, 1997. . Section 2.2.1: Stacks, Queues, and Dequeues, pp. 238–243.
*
Thomas H. Cormen,
Charles E. Leiserson,
Ronald L. Rivest, and
Clifford Stein. ''
Introduction to Algorithms'', Second Edition. MIT Press and McGraw-Hill, 2001. . Section 10.1: Stacks and queues, pp. 200–204.
*William Ford,
William Topp
William is a masculine given name of Norman French origin.Hanks, Hardcastle and Hodges, ''Oxford Dictionary of First Names'', Oxford University Press, 2nd edition, , p. 276. It became very popular in the English language after the Norman conques ...
. ''Data Structures with C++ and STL'', Second Edition. Prentice Hall, 2002. . Chapter 8: Queues and Priority Queues, pp. 386–390.
*
Adam Drozdek. ''Data Structures and Algorithms in C++'', Third Edition. Thomson Course Technology, 2005. . Chapter 4: Stacks and Queues, pp. 137–169.
External links
STL Quick Reference
{{DEFAULTSORT:Queue (Data Structure)
Abstract data types
Articles with example C++ code