hello-algo/docs/chapter_array_and_linkedlist/index.md

23 lines
860 B
Markdown
Raw Normal View History

2023-06-02 01:35:02 +08:00
---
comments: true
2023-07-19 16:10:06 +08:00
icon: material/view-list-outline
2023-06-02 01:35:02 +08:00
---
2023-08-19 22:07:27 +08:00
# 第 4 章   数组与链表
2023-06-02 01:35:02 +08:00
2023-11-09 05:13:48 +08:00
![数组与链表](../assets/covers/chapter_array_and_linkedlist.jpg){ class="cover-image" }
2023-07-17 17:51:03 +08:00
2023-08-03 04:37:52 +08:00
!!! abstract
2023-09-09 00:51:48 +08:00
数据结构的世界如同一堵厚实的砖墙。
2023-08-04 05:24:49 +08:00
数组的砖块整齐排列,逐个紧贴。链表的砖块分散各处,连接的藤蔓自由地穿梭于砖缝之间。
2023-08-03 04:37:52 +08:00
2023-07-17 17:51:03 +08:00
## 本章内容
- [4.1   数组](https://www.hello-algo.com/chapter_array_and_linkedlist/array/)
- [4.2   链表](https://www.hello-algo.com/chapter_array_and_linkedlist/linked_list/)
- [4.3   列表](https://www.hello-algo.com/chapter_array_and_linkedlist/list/)
2023-11-26 02:06:39 +08:00
- [4.4   内存与缓存 *](https://www.hello-algo.com/chapter_array_and_linkedlist/ram_and_cache/)
- [4.5   小结](https://www.hello-algo.com/chapter_array_and_linkedlist/summary/)