fine tune

This commit is contained in:
krahets
2023-09-17 01:13:15 +08:00
parent b2246e11a7
commit 9f59c572b5
32 changed files with 44 additions and 44 deletions
@@ -133,7 +133,7 @@ void main() {
/* 查找节点 */
TreeNode? node = bst.search(7);
print("\n查找到的节点对象为 $node,节点值 = ${node?.val}");
print("\n查找到的节点对象为 $node ,节点值 = ${node?.val}");
/* 插入节点 */
bst.insert(16);