Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
54
func
(node *BTreeNode[T]) IsFull(maxKeys int) bool {
55
return
node.numKeys == maxKeys
56
}
57
58
func
(node *BTreeNode[T]) Search(key T) bool {
59
i := 0
Callers
2
InsertNonFull
Method · 0.95
Insert
Method · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected