MCPcopy Index your code
hub / github.com/TheAlgorithms/Go / Key

Method Key

structure/tree/tree.go:16–16  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

14
15type Node[T constraints.Ordered] interface {
16 Key() T
17 Parent() Node[T]
18 Left() Node[T]
19 Right() Node[T]

Callers 15

accessNodeByLayerHelperFunction · 0.65
searchTreeHelperFunction · 0.65
inOrderHelperFunction · 0.65
preOrderRecursiveFunction · 0.65
postOrderRecursiveFunction · 0.65
levelOrderHelperFunction · 0.65
predecessorHelperFunction · 0.65
successorHelperFunction · 0.65
MaxMethod · 0.65
MinMethod · 0.65
MaxMethod · 0.65
MinMethod · 0.65

Calls

no outgoing calls

Tested by 4

TestPushFunction · 0.52
TestDeleteFunction · 0.52
TestAVLPushFunction · 0.52
TestAVLDeleteFunction · 0.52