2023-06-02 01:35:02 +08:00
|
|
|
---
|
|
|
|
comments: true
|
2023-07-17 17:51:03 +08:00
|
|
|
icon: material/graph-outline
|
2023-06-02 01:35:02 +08:00
|
|
|
---
|
|
|
|
|
2023-08-19 22:07:27 +08:00
|
|
|
# 第 7 章 树
|
2023-06-02 01:35:02 +08:00
|
|
|
|
2023-11-09 05:13:48 +08:00
|
|
|
![树](../assets/covers/chapter_tree.jpg){ class="cover-image" }
|
2023-06-02 01:35:02 +08:00
|
|
|
|
2023-08-03 04:37:52 +08:00
|
|
|
!!! abstract
|
|
|
|
|
2023-12-02 06:24:05 +08:00
|
|
|
参天大树充满生命力,根深叶茂,分枝扶疏。
|
2023-08-03 04:37:52 +08:00
|
|
|
|
|
|
|
它为我们展现了数据分治的生动形态。
|
|
|
|
|
2023-07-17 17:51:03 +08:00
|
|
|
## 本章内容
|
|
|
|
|
|
|
|
- [7.1 二叉树](https://www.hello-algo.com/chapter_tree/binary_tree/)
|
|
|
|
- [7.2 二叉树遍历](https://www.hello-algo.com/chapter_tree/binary_tree_traversal/)
|
|
|
|
- [7.3 二叉树数组表示](https://www.hello-algo.com/chapter_tree/array_representation_of_tree/)
|
|
|
|
- [7.4 二叉搜索树](https://www.hello-algo.com/chapter_tree/binary_search_tree/)
|
|
|
|
- [7.5 AVL 树 *](https://www.hello-algo.com/chapter_tree/avl_tree/)
|
|
|
|
- [7.6 小结](https://www.hello-algo.com/chapter_tree/summary/)
|