This commit is contained in:
krahets
2023-10-23 03:09:59 +08:00
parent d2ba55fcd6
commit c2ee796047
3 changed files with 10 additions and 7 deletions

View File

@@ -15,7 +15,7 @@ comments: true
## 7.4.1   二叉搜索树的操作
我们将二叉搜索树封装为一个类 `ArrayBinaryTree` ,并声明一个成员变量 `root` ,指向树的根节点。
我们将二叉搜索树封装为一个类 `BinarySearchTree` ,并声明一个成员变量 `root` ,指向树的根节点。
### 1.   查找节点