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-08-03T05:00:00-04:00
A stack is a linear data structure that behaves like a real-world stack of items. It follows a last in, first out (LIFO) order of operations, similar to its real-world counterpart. This means that new items are added to the top of the stack and items are removed from the top of the stack as well.
![JavaScript Stack visualization](./blog_images/ds-stack.png)
![JavaScript Stack visualization](./illustrations/ds-stack.png)
The main operations of a stack data structure are: