Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/arnauddri/algorithms
/ Tree
Struct
Tree
data-structures/binary-tree/bst.go:26–29 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
24
}
25
26
type
Tree
struct
{
27
Head *Node
28
Size int
29
}
30
31
func
NewTree(n *Node) *Tree {
32
if
n == nil {
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected