Gets whether the tree allows duplicate keys.
True if duplicates are allowed, false otherwise.
Gets whether the tree is in Map mode.
True if in Map mode, false otherwise.
Gets whether the tree's comparison logic is reversed.
True if the tree is reversed (e.g., a max-heap logic).
Gets the sentinel NIL node (used in self-balancing trees like Red-Black Tree).
The NIL node.
Gets the number of nodes in the tree.
The size of the tree.
Protected_balance(Protected) Calculates the balance factor (height(right) - height(left)).
The node to check.
The balance factor (positive if right-heavy, negative if left-heavy).
Protected_balanceLL(Protected) Performs a Left-Left (LL) rotation (a single right rotation).
The unbalanced node (root of the unbalanced subtree).
Protected_balanceLR(Protected) Performs a Left-Right (LR) double rotation.
The unbalanced node (root of the unbalanced subtree).
Protected_balanceProtected_balanceRL(Protected) Performs a Right-Left (RL) double rotation.
The unbalanced node (root of the unbalanced subtree).
Protected_balanceRR(Protected) Performs a Right-Right (RR) rotation (a single left rotation).
The unbalanced node (root of the unbalanced subtree).
Protected_clearProtected_clearProtected_clone(Protected) Helper for cloning. Performs a BFS and adds all nodes to the new tree.
The new, empty tree instance to populate.
Protected_compareProtected_createProtected_create(Protected) Creates a new AVL tree node.
The newly created AVLTreeNode.
Protected_DEFAULT_(Protected) Default callback function, returns the node's key.
The node.
The node's key or undefined.
Protected_dfsCallback type.
Function to call on nodes.
Optionalpattern: DFSOrderPatternTraversal order.
OptionalonlyOne: booleanStop after first match.
OptionalstartNode: Starting node.
OptionaliterationType: IterationTypeTraversal method.
OptionalincludeNull: booleanInclude nulls.
OptionalshouldVisitLeft: ((node: undefined | null | BinaryTreeNode<K, V>) => boolean)Predicate to traverse left.
OptionalshouldVisitRight: ((node: undefined | null | BinaryTreeNode<K, V>) => boolean)Predicate to traverse right.
OptionalshouldVisitRoot: ((node: undefined | null | BinaryTreeNode<K, V>) => boolean)Predicate to visit root.
OptionalshouldProcessRoot: ((node: undefined | null | BinaryTreeNode<K, V>) => boolean)Predicate to process root.
Array of callback results.
Protected_display(Protected) Recursive helper for toVisual.
The current node.
Print options.
Layout information for this subtree.
Protected_ensure(Protected) Converts a key, node, entry, or predicate into a standardized predicate function.
The item to convert.
A predicate function.
Protected_extractProtected_get(Protected) Gets the iterator for the tree (default in-order).
Optionalnode: null | BinaryTreeNode<K, V> = ...The node to start iteration from.
An iterator for [key, value] pairs.
Protected_is(Protected) Checks if an item is a predicate function.
The item to check.
True if it's a function.
Protected_key(Protected) Normalize input into a node plus its effective value and count.
Tuple [node, value] where node may be undefined.
Protected_replace(Protected) Replace one node by another and adjust counters accordingly.
Node being replaced.
Replacement node.
The new node after replacement.
Protected_setProtected_setProtected_snapshotProtected_swap(Protected) Swap keys/values/counters between the source and destination nodes.
Source node (or key) whose properties will be moved.
Destination node (or key) to receive properties.
Destination node after swap, or undefined.
Protected_update(Protected) Recalculates and updates the height of a node based on its children's heights.
The node to update.
Adds multiple items to the tree.
An iterable of items to add.
Optionalvalues: Iterable<undefined | V, any, any>An optional parallel iterable of values.
OptionalisBalanceAdd: boolean = trueIf true, builds a balanced tree from the items.
OptionaliterationType: IterationType = ...The traversal method for balanced add (recursive or iterative).
An array of booleans indicating the success of each individual add operation.
Delete a node (or decrement its count) and rebalance if needed.
Array of deletion results including deleted node and a rebalance hint when present.
Performs a Depth-First Search (DFS) traversal.
Optionalcallback: C = ...Function to call on each node.
Optionalpattern: DFSOrderPattern = 'IN'The traversal order ('IN', 'PRE', 'POST').
OptionalonlyOne: boolean = falseIf true, stops after the first callback.
OptionalstartNode: The node to start from.
OptionaliterationType: IterationType = ...The traversal method.
An array of callback results.
Gets the value associated with a key.
The key, node, or entry to get the value for.
OptionalstartNode: The node to start searching from (if not in Map mode).
OptionaliterationType: IterationType = ...The traversal method (if not in Map mode).
The associated value, or undefined.
Finds the leftmost node in a subtree (the node with the smallest key in a BST).
The type of the callback function.
The callback result for the leftmost node.
Gets the first node matching a predicate.
The key, node, entry, or predicate function to search for.
OptionalstartNode: BSTNOptKeyOrNode<K, BSTNode<K, V>> = ...The node to start the search from.
OptionaliterationType: IterationType = ...The traversal method.
The first matching node, or undefined if not found.
Gets all nodes matching a predicate.
The key, node, entry, or predicate function to search for.
OptionalonlyOne: booleanIf true, stops after finding the first match.
OptionalstartNode: The node to start the search from.
OptionaliterationType: IterationTypeThe traversal method.
An array of matching nodes.
Gets the Morris traversal predecessor (rightmost node in the left subtree, or node itself).
The node to find the predecessor for.
The Morris predecessor.
Finds the rightmost node in a subtree (the node with the largest key in a BST).
The type of the callback function.
The callback result for the rightmost node.
Gets the in-order successor of a node in a BST.
Optionalx: null | K | BinaryTreeNode<K, V>The node to find the successor of.
The successor node, or null/undefined if none exists.
Checks if a node matching the predicate exists in the tree.
OptionalkeyNodeEntryOrPredicate: The key, node, entry, or predicate to check for.
OptionalstartNode: The node to start the search from.
OptionaliterationType: IterationTypeThe traversal method.
True if a matching node exists, false otherwise.
Whether there exists an entry with the given value.
Value to test.
true if found; otherwise false.
Type guard: check whether the input is an AVLTreeCounterNode.
True if the value is an AVLTreeCounterNode.
Checks if the given item is a Range object.
The item to check.
True if it's a Range, false otherwise.
Checks if the given item is a "real" node (i.e., not null, undefined, or NIL).
True if it's a real node, false otherwise.
Checks if the given item is either a "real" node or null.
True if it's a real node or null, false otherwise.
Traverses the tree and returns nodes that are lesser or greater than a target node.
Optionalcallback: C = ...Function to call on matching nodes.
OptionallesserOrGreater: CP = -11 for lesser, 1 for greater, 0 for equal.
OptionaltargetNode: The node to compare against.
OptionaliterationType: IterationType = ...The traversal method.
An array of callback results.
Merges another tree into this one by adding all its nodes.
The tree to merge.
Performs an optimized search for nodes within a given key range.
A Range object or a [low, high] tuple.
Optionalcallback: C = ...A function to call on matching nodes.
OptionalstartNode: The node to start the search from.
OptionaliterationType: IterationType = ...The traversal method.
An array of callback results.
Searches the tree for nodes matching a predicate, key, or range.
The key, node, entry, predicate, or range to search for.
OptionalonlyOne: boolean = falseIf true, stops after finding the first match.
Optionalcallback: C = ...A function to call on matching nodes.
OptionalstartNode: The node to start the search from.
OptionaliterationType: IterationType = ...Whether to use 'RECURSIVE' or 'ITERATIVE' search.
An array of results from the callback function for each matching node.
AVL tree that tracks an aggregate 'count' across nodes; supports balanced insert/delete and map-like mode.
Remarks
Time O(1), Space O(1)