Revisit the English version (#1835)

* Review the English version using Claude-4.5.

* Update mkdocs.yml

* Align the section titles.

* Bug fixes
This commit is contained in:
Yudong Jin
2025-12-30 17:54:01 +08:00
committed by GitHub
parent 091afd38b4
commit 45e1295241
106 changed files with 4195 additions and 3398 deletions
+5 -5
View File
@@ -1,9 +1,9 @@
# Stack and queue
# Stack and Queue
![Stack and queue](../assets/covers/chapter_stack_and_queue.jpg)
![Stack and Queue](../assets/covers/chapter_stack_and_queue.jpg)
!!! 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.
Stacks are like stacking cats, while queues are like cats lining up.
They represent LIFO (Last In First Out) and FIFO (First In First Out) logic, respectively.