MCPcopy 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
26type Tree struct {
27 Head *Node
28 Size int
29}
30
31func NewTree(n *Node) *Tree {
32 if n == nil {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected