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.
24 lines
355 B
24 lines
355 B
// File: binary_tree.go
|
|
// Created Time: 2022-11-25
|
|
// Author: Reanon (793584285@qq.com)
|
|
|
|
package chapter_tree
|
|
|
|
import (
|
|
. "github.com/krahets/hello-algo/pkg"
|
|
)
|
|
|
|
type BinaryTree struct {
|
|
root *TreeNode
|
|
}
|
|
|
|
func NewBinaryTree(node *TreeNode) *BinaryTree {
|
|
return &BinaryTree{
|
|
root: node,
|
|
}
|
|
}
|
|
|
|
func (tree *BinaryTree) Print() {
|
|
PrintTree(tree.root)
|
|
}
|