The Queue data structure
Last updated
Was this helpful?
Last updated
Was this helpful?
The #data-structures series is a collection of posts about reimplemented data structures in JavaScript.
Of course, all the code can also be found on Github in the repository .
A Queue is a particular kind of abstract data type or collection in which the entities in the collection are kept in order and the principal operations are the addition of entities to the rear terminal position, known as enqueue, and removal of entities from the front terminal position, known as dequeue. This makes the Queue 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. From
As for the Stack data structure, a peek operation is often added to the Queue data structure. It returns the value of the front element without dequeuing it.
Access
Search
Insertion
Deletion
O(n)
O(n)
O(1)
O(n)
To get a full overview of the time and space complexity of the Queue data structure, have a look to this excellent .