feat(tree): add C codes

This commit is contained in:
reanon
2023-01-11 01:56:08 +08:00
parent 24cdcd54df
commit 8723ca1469
7 changed files with 195 additions and 1 deletions

View File

@ -20,7 +20,7 @@ func TestBinarySearchTree(t *testing.T) {
fmt.Println("\n二叉树的根结点为:", node.Val)
// 查找结点
node = bst.Search(7)
node = bst.search(7)
fmt.Println("查找到的结点对象为", node, ",结点值 =", node.Val)
// 插入结点