Update illustration paths

This commit is contained in:
Angelos Chalaris
2023-02-16 22:26:39 +02:00
parent da31e8d138
commit 739c152b2f
18 changed files with 18 additions and 19 deletions

View File

@ -13,7 +13,7 @@ firstSeen: 2021-07-29T05:00:00-04:00
A queue is a linear data structure that behaves like a real-world queue. It follows a first in, first out (FIFO) order of operations, similar to its real-world counterpart. This means that new items are added to the end of the queue, whereas items are removed from the start of the queue.
![JavaScript Queue visualization](./blog_images/ds-queue.png)
![JavaScript Queue visualization](./illustrations/ds-queue.png)
The main operations of a queue data structure are: