This commit is contained in:
krahets
2024-03-23 03:04:26 +08:00
parent 9472c8b4e6
commit 22017aa8e5
43 changed files with 0 additions and 2 deletions

View File

@@ -0,0 +1,25 @@
---
comments: true
icon: material/stack-overflow
---
# Chapter 5.   Stack and Queue
<div class="center-table" markdown>
![Stack and Queue](../assets/covers/chapter_stack_and_queue.jpg){ class="cover-image" }
</div>
!!! abstract
A stack is like cats placed on top of each other, while a queue is like cats lined up one by one.
They represent the logical relationships of Last-In-First-Out (LIFO) and First-In-First-Out (FIFO), respectively.
## Chapter Contents
- [5.1 &nbsp; Stack](https://www.hello-algo.com/en/chapter_stack_and_queue/stack/)
- [5.2 &nbsp; Queue](https://www.hello-algo.com/en/chapter_stack_and_queue/queue/)
- [5.3 &nbsp; Double-ended Queue](https://www.hello-algo.com/en/chapter_stack_and_queue/deque/)
- [5.4 &nbsp; Summary](https://www.hello-algo.com/en/chapter_stack_and_queue/summary/)