MCPcopy Create free account
hub / github.com/0xAX/go-algorithms / node

Struct node

sorting/treesort.go:6–10  ·  view source on GitHub ↗

definition of a bst node

Source from the content-addressed store, hash-verified

4
5// definition of a bst node
6type node struct {
7 val int
8 left *node
9 right *node
10}
11
12// definition of a node
13type btree struct {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected