MCPcopy Create free account
hub / github.com/TheAlgorithms/Go / IsFull

Method IsFull

structure/tree/btree.go:54–56  ·  view source on GitHub ↗
(maxKeys int)

Source from the content-addressed store, hash-verified

52}
53
54func (node *BTreeNode[T]) IsFull(maxKeys int) bool {
55 return node.numKeys == maxKeys
56}
57
58func (node *BTreeNode[T]) Search(key T) bool {
59 i := 0

Callers 2

InsertNonFullMethod · 0.95
InsertMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected