BPlusNodeAlgos class
Algorithms to deal with BPlusNode
Constructors
Properties
- hashCode → int
-
The hash code for this object.
read-onlyinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-onlyinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
add<
K> ({K newKey, BPlusNode< K> node, Compare<K> compare, bool replaceDuplicate = false}) → BPlusCell<K> - Ads a new cell in the internal AVL tree of the supplied node. BPlusNode consturctor has the logic to initialize the internal AVL Tree
-
getSize<
K> ({BPlusNode< K> node}) → int -
remove<
K> ({K keyToBeDeleted, BPlusNode< K> node}) → BPlusCell<K> -
searchGTE<
K> ({K searchKey, BPlusNode< K> node}) → BPlusCell<K> -
searchLTE<
K> ({K searchKey, BPlusNode< K> node}) → BPlusCell<K>