mirror of
https://github.com/krahets/hello-algo.git
synced 2025-07-23 09:42:28 +08:00
feat(go): support basic pkg
This commit is contained in:
23
codes/go/chapter_tree/binary_tree.go
Normal file
23
codes/go/chapter_tree/binary_tree.go
Normal file
@ -0,0 +1,23 @@
|
||||
// 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)
|
||||
}
|
Reference in New Issue
Block a user