mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-28 23:46:28 +08:00
23 lines
595 B
Markdown
23 lines
595 B
Markdown
---
|
|
comments: true
|
|
icon: material/graph-outline
|
|
---
|
|
|
|
# 第 7 章 树
|
|
|
|
![树](../assets/covers/chapter_tree.jpg){ class="cover-image" }
|
|
|
|
!!! abstract
|
|
|
|
参天大树充满生命力,根深叶茂,分枝扶疏。
|
|
|
|
它为我们展现了数据分治的生动形态。
|
|
|
|
## 本章内容
|
|
|
|
- [7.1 二叉树](binary_tree.md)
|
|
- [7.2 二叉树遍历](binary_tree_traversal.md)
|
|
- [7.3 二叉树数组表示](array_representation_of_tree.md)
|
|
- [7.4 二叉搜索树](binary_search_tree.md)
|
|
- [7.5 AVL 树 *](avl_tree.md)
|
|
- [7.6 小结](summary.md)
|