This commit is contained in:
krahets
2023-05-21 19:29:43 +08:00
parent 0c64fc7315
commit 5a68f683b9
26 changed files with 93 additions and 93 deletions

View File

@@ -2,7 +2,7 @@
comments: true
---
# 8.4.   二叉搜索树
# 7.4.   二叉搜索树
「二叉搜索树 Binary Search Tree」满足以下条件
@@ -13,7 +13,7 @@ comments: true
<p align="center"> Fig. 二叉搜索树 </p>
## 8.4.1. &nbsp; 二叉搜索树的操作
## 7.4.1. &nbsp; 二叉搜索树的操作
### 查找节点
@@ -1159,7 +1159,7 @@ comments: true
<p align="center"> Fig. 二叉搜索树的中序遍历序列 </p>
## 8.4.2. &nbsp; 二叉搜索树的效率
## 7.4.2. &nbsp; 二叉搜索树的效率
给定一组数据,我们考虑使用数组或二叉搜索树存储。
@@ -1183,7 +1183,7 @@ comments: true
<p align="center"> Fig. 二叉搜索树的平衡与退化 </p>
## 8.4.3. &nbsp; 二叉搜索树常见应用
## 7.4.3. &nbsp; 二叉搜索树常见应用
- 用作系统中的多级索引,实现高效的查找、插入、删除操作。
- 作为某些搜索算法的底层数据结构。