You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
940 B
42 lines
940 B
// File: binary_search_tree_test.go
|
|
// Created Time: 2022-11-26
|
|
// Author: Reanon (793584285@qq.com)
|
|
|
|
package chapter_tree
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestBinarySearchTree(t *testing.T) {
|
|
nums := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}
|
|
bst := newBinarySearchTree(nums)
|
|
fmt.Println("\n初始化的二叉树为:")
|
|
bst.print()
|
|
|
|
// 获取根结点
|
|
node := bst.getRoot()
|
|
fmt.Println("\n二叉树的根结点为:", node.Val)
|
|
|
|
// 查找结点
|
|
node = bst.search(7)
|
|
fmt.Println("查找到的结点对象为", node, ",结点值 =", node.Val)
|
|
|
|
// 插入结点
|
|
node = bst.insert(16)
|
|
fmt.Println("\n插入结点后 16 的二叉树为:")
|
|
bst.print()
|
|
|
|
// 删除结点
|
|
bst.remove(1)
|
|
fmt.Println("\n删除结点 1 后的二叉树为:")
|
|
bst.print()
|
|
bst.remove(2)
|
|
fmt.Println("\n删除结点 2 后的二叉树为:")
|
|
bst.print()
|
|
bst.remove(4)
|
|
fmt.Println("\n删除结点 4 后的二叉树为:")
|
|
bst.print()
|
|
}
|