hello-algo/en/docs/chapter_array_and_linkedlist/index.md

23 lines
735 B
Markdown
Raw Normal View History

2023-12-27 00:48:00 +08:00
---
comments: true
icon: material/view-list-outline
---
2024-04-06 03:02:20 +08:00
# Chapter 4.   Arrays and linked lists
2023-12-27 00:48:00 +08:00
2024-04-06 03:02:20 +08:00
![Arrays and linked lists](../assets/covers/chapter_array_and_linkedlist.jpg){ class="cover-image" }
2023-12-27 00:48:00 +08:00
!!! abstract
2024-01-07 23:42:54 +08:00
The world of data structures resembles a sturdy brick wall.
2023-12-27 00:48:00 +08:00
2024-01-07 23:42:54 +08:00
In arrays, envision bricks snugly aligned, each resting seamlessly beside the next, creating a unified formation. Meanwhile, in linked lists, these bricks disperse freely, embraced by vines gracefully knitting connections between them.
2023-12-27 00:48:00 +08:00
2024-04-07 02:41:53 +08:00
## Chapter contents
2023-12-27 00:48:00 +08:00
2024-04-07 02:41:53 +08:00
- [4.1   Array](array.md)
- [4.2   Linked list](linked_list.md)
- [4.3   List](list.md)
2024-05-01 06:47:36 +08:00
- [4.4   Memory and cache *](ram_and_cache.md)
2024-04-07 02:41:53 +08:00
- [4.5   Summary](summary.md)