mirror of
https://github.com/krahets/hello-algo.git
synced 2025-11-02 21:24:53 +08:00
feat(tree): add C codes
This commit is contained in:
@ -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)
|
||||
|
||||
// 插入结点
|
||||
|
||||
Reference in New Issue
Block a user