Fix the docs of binary_search_tree and

graph_operations.
This commit is contained in:
krahets
2023-10-23 03:09:41 +08:00
parent 433997c38d
commit fc70b1eb2c
3 changed files with 10 additions and 7 deletions

View File

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