This commit is contained in:
krahets
2026-04-03 18:46:15 +08:00
parent 377736b1bd
commit 9d21ca86b0
352 changed files with 46563 additions and 11262 deletions
@@ -3,20 +3,20 @@ comments: true
icon: material/view-list-outline
---
# Chapter 4.   Array and Linked List
# Chapter 4.   Arrays and Linked Lists
![Array and Linked List](../assets/covers/chapter_array_and_linkedlist.jpg){ class="cover-image" }
![Arrays and Linked Lists](../assets/covers/chapter_array_and_linkedlist.jpg){ class="cover-image" }
!!! abstract
The world of data structures is like a solid brick wall.
Array bricks are neatly arranged, tightly packed one by one. Linked list bricks are scattered everywhere, with connecting vines freely weaving through the gaps between bricks.
The bricks of an array are neatly aligned, each pressed tightly against the next. The bricks of a linked list are scattered about, with connecting vines weaving freely through the gaps between them.
## Chapter contents
- [4.1   Array](array.md)
- [4.2   Linked List](linked_list.md)
- [4.3   List](list.md)
- [4.4   Memory and Cache *](ram_and_cache.md)
- [4.4   Random-Access Memory and Cache *](ram_and_cache.md)
- [4.5   Summary](summary.md)