This commit is contained in:
krahets
2024-04-03 04:41:27 +08:00
parent 20f79f5f32
commit 8591529021
47 changed files with 136 additions and 135 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ comments: true
# 7.4   二叉搜索树
如图 7-16 所示,二叉搜索树 binary search tree满足以下条件。
如图 7-16 所示,<u>二叉搜索树binary search tree</u>满足以下条件。
1. 对于根节点,左子树中所有节点的值 $<$ 根节点的值 $<$ 右子树中所有节点的值。
2. 任意节点的左、右子树也是二叉搜索树,即同样满足条件 `1.`