diff --git a/src/data-structures/binary-tree/avl-tree.ts b/src/data-structures/binary-tree/avl-tree.ts index f71e789..41da140 100644 --- a/src/data-structures/binary-tree/avl-tree.ts +++ b/src/data-structures/binary-tree/avl-tree.ts @@ -47,13 +47,21 @@ export class AVLTree = AVLTreeNode = AVLTreeNode} identifier - The `identifier` parameter is either a - * `BTNKey` or a generic type `N`. It represents the property of the node that we are - * searching for. It can be a specific key value or any other property of the node. - * @param callback - The `callback` parameter is a function that takes a node as input and returns a - * value. This value is compared with the `identifier` parameter to determine if the node should be - * included in the result. The `callback` parameter has a default value of - * `this._defaultOneParamCallback` - * @returns The method is returning an array of `BiTreeDeleteResult` objects. + * Time Complexity: O(log n) - logarithmic time, where "n" is the number of nodes in the tree. The delete method of the superclass (BST) has logarithmic time complexity. + * Space Complexity: O(1) - constant space, as it doesn't use additional data structures that scale with input size. + */ + + /** + * Time Complexity: O(log n) - logarithmic time, where "n" is the number of nodes in the tree. The delete method of the superclass (BST) has logarithmic time complexity. + * Space Complexity: O(1) - constant space, as it doesn't use additional data structures that scale with input size. + * + * The function overrides the delete method of a binary tree, performs the deletion, and then + * balances the tree if necessary. + * @param identifier - The `identifier` parameter is the value or condition used to identify the + * node(s) to be deleted from the binary tree. It can be of any type and is the return type of the + * `callback` function. + * @param {C} callback - The `callback` parameter is a function that will be called for each node + * that is deleted from the binary tree. It is an optional parameter and if not provided, it will + * default to the `_defaultOneParamCallback` function. The `callback` function should have a single + * parameter of type `N + * @returns The method is returning an array of `BiTreeDeleteResult`. */ override delete>( identifier: ReturnType, @@ -89,12 +105,14 @@ export class AVLTree = AVLTreeNode = AVLTreeNode = AVLTreeNode = AVLTreeNode = AVLTreeNode = AVLTreeNode = AVLTreeNode = AVLTreeNode = BinaryTreeNode } /** - * Time Complexity: O(n^2) + * Time Complexity: O(k * n) "n" is the number of nodes in the tree, and "k" is the number of keys to be inserted. * Space Complexity: O(1) */ /** - * Time Complexity: O(n^2) + * Time Complexity: O(k * n) "n" is the number of nodes in the tree, and "k" is the number of keys to be inserted. * Space Complexity: O(1) * * The `addMany` function takes an array of keys or nodes and an optional array of values, and adds @@ -252,12 +252,12 @@ export class BinaryTree = BinaryTreeNode } /** - * Time Complexity: O(n^2) + * Time Complexity: O(k * n) "n" is the number of nodes in the tree, and "k" is the number of keys to be inserted. * Space Complexity: O(1) */ /** - * Time Complexity: O(n^2) + * Time Complexity: O(k * n) "n" is the number of nodes in the tree, and "k" is the number of keys to be inserted. * Space Complexity: O(1) * * The `refill` function clears the binary tree and adds multiple nodes with the given IDs or nodes and optional data. diff --git a/src/data-structures/binary-tree/bst.ts b/src/data-structures/binary-tree/bst.ts index 729c4a5..0295b7d 100644 --- a/src/data-structures/binary-tree/bst.ts +++ b/src/data-structures/binary-tree/bst.ts @@ -66,11 +66,11 @@ export class BSTNode = BSTNodeNested> extend export class BST = BSTNode>> extends BinaryTree implements IBinaryTree { + /** - * The constructor function initializes a binary search tree object with an optional comparator - * function. - * @param {BSTOptions} [options] - An optional object that contains configuration options for the - * binary search tree. + * The constructor function initializes a binary search tree with an optional comparator function. + * @param {BSTOptions} [options] - An optional object that contains additional configuration options + * for the binary search tree. */ constructor(options?: BSTOptions) { super(options); @@ -105,14 +105,22 @@ export class BST = BSTNode> } /** - * The `add` function in a binary search tree class inserts a new node with a given key and value - * into the tree. - * @param {BTNKey | N | undefined} keyOrNode - The `keyOrNode` parameter can be either a - * `BTNKey` (which can be a number or a string), a `BSTNode` object, or `undefined`. - * @param [value] - The `value` parameter is the value to be assigned to the new node being added to the - * binary search tree. - * @returns the inserted node (N) if it was successfully added to the binary search tree. If the node - * was not added or if the parameters were invalid, it returns undefined or undefined. + * Time Complexity: O(log n) - Average case for a balanced tree. In the worst case (unbalanced tree), it can be O(n). + * Space Complexity: O(1) - Constant space is used. + */ + + + /** + * Time Complexity: O(log n) - Average case for a balanced tree. In the worst case (unbalanced tree), it can be O(n). + * Space Complexity: O(1) - Constant space is used. + * + * The `add` function adds a new node to a binary search tree based on the provided key and value. + * @param {BTNKey | N | null | undefined} keyOrNode - The `keyOrNode` parameter can be one of the + * following types: + * @param {V} [value] - The `value` parameter is an optional value that can be associated with the + * key or node being added to the binary search tree. + * @returns The method `add` returns a node (`N`) that was inserted into the binary search tree. If + * no node was inserted, it returns `undefined`. */ override add(keyOrNode: BTNKey | N | null | undefined, value?: V): N | undefined { if (keyOrNode === null) return undefined; @@ -182,17 +190,29 @@ export class BST = BSTNode> } /** - * The `addMany` function is used to efficiently add multiple nodes to a binary search tree while - * maintaining balance. - * @param {[BTNKey | N, V][]} keysOrNodes - The `arr` parameter in the `addMany` function - * represents an array of keys or nodes that need to be added to the binary search tree. It can be an - * array of `BTNKey` or `N` (which represents the node type in the binary search tree) or - * `undefined - * @param {V[]} data - The values of tree nodes - * @param {boolean} isBalanceAdd - If true the nodes will be balance inserted in binary search method. - * @param iterationType - The `iterationType` parameter determines the type of iteration to be used. - * It can have two possible values: - * @returns The `addMany` function returns an array of `N`, `undefined`, or `undefined` values. + * Time Complexity: O(n log n) - Adding each element individually in a balanced tree. + * Space Complexity: O(n) - Additional space is required for the sorted array. + */ + + /** + * Time Complexity: O(n log n) - Adding each element individually in a balanced tree. + * Space Complexity: O(n) - Additional space is required for the sorted array. + * + * The `addMany` function is used to efficiently add multiple keys or nodes with corresponding data + * to a binary search tree. + * @param {(BTNKey | N | undefined)[]} keysOrNodes - An array of keys or nodes to be added to the + * binary search tree. Each element can be of type `BTNKey` (binary tree node key), `N` (binary tree + * node), or `undefined`. + * @param {(V | undefined)[]} [data] - An optional array of values to associate with the keys or + * nodes being added. If provided, the length of the `data` array must be the same as the length of + * the `keysOrNodes` array. + * @param [isBalanceAdd=true] - A boolean flag indicating whether the tree should be balanced after + * adding the nodes. The default value is `true`. + * @param iterationType - The `iterationType` parameter is an optional parameter that specifies the + * type of iteration to use when adding multiple keys or nodes to the binary search tree. It has a + * default value of `this.iterationType`, which means it will use the iteration type specified in the + * current instance of the binary search tree + * @returns The function `addMany` returns an array of nodes (`N`) or `undefined` values. */ override addMany( keysOrNodes: (BTNKey | N | undefined)[], @@ -274,16 +294,21 @@ export class BST = BSTNode> } /** - * The function `lastKey` returns the key of the rightmost node if the comparison result is less - * than, the key of the leftmost node if the comparison result is greater than, and the key of the - * rightmost node otherwise. - * @param {N | undefined} beginRoot - The `beginRoot` parameter is the starting point for finding the last - * key in a binary tree. It represents the root node of the subtree from which the search for the - * last key should begin. If no specific `beginRoot` is provided, the search will start from the root - * of the entire binary + * Time Complexity: O(log n) - Average case for a balanced tree. + * Space Complexity: O(1) - Constant space is used. + */ + + /** + * Time Complexity: O(log n) - Average case for a balanced tree. + * Space Complexity: O(1) - Constant space is used. + * + * The `lastKey` function returns the key of the rightmost node in a binary tree, or the key of the + * leftmost node if the comparison result is greater than. + * @param {BTNKey | N | undefined} beginRoot - The `beginRoot` parameter is optional and can be of + * type `BTNKey`, `N`, or `undefined`. It represents the starting point for finding the last key in + * the binary tree. If not provided, it defaults to the root of the binary tree (`this.root`). * @param iterationType - The `iterationType` parameter is used to specify the type of iteration to - * be performed when finding the last key. It determines whether the iteration should be performed in - * pre-order, in-order, or post-order. + * be performed. It can have one of the following values: * @returns the key of the rightmost node in the binary tree if the comparison result is less than, * the key of the leftmost node if the comparison result is greater than, and the key of the * rightmost node otherwise. If no node is found, it returns 0. @@ -295,10 +320,18 @@ export class BST = BSTNode> } /** + * Time Complexity: O(log n) - Average case for a balanced tree. + * Space Complexity: O(log n) - Space for the recursive call stack in the worst case. + */ + + /** + * Time Complexity: O(log n) - Average case for a balanced tree. + * Space Complexity: O(log n) - Space for the recursive call stack in the worst case. + * * The function `getNodeByKey` searches for a node in a binary tree based on a given key, using * either recursive or iterative methods. * @param {BTNKey} key - The `key` parameter is the key value that we are searching for in the tree. - * It is used to find the node with the matching key value. + * It is used to identify the node that we want to retrieve. * @param iterationType - The `iterationType` parameter is an optional parameter that specifies the * type of iteration to use when searching for a node in the binary tree. It can have two possible * values: @@ -344,25 +377,32 @@ export class BST = BSTNode> } /** - * The function `getNodes` retrieves nodes from a binary tree based on a given node property or key, - * using either recursive or iterative traversal. - * @param {ReturnType | N} identifier - The `nodeProperty` parameter represents the property - * of the binary tree node that you want to search for. It can be either a `BTNKey` or a - * generic type `N`. - * @param callback - The `callback` parameter is a function that takes a node as input and returns a - * value. This value is compared with the `nodeProperty` parameter to determine if the node should be - * included in the result. The default value for `callback` is `this._defaultOneParamCallback`, which is - * a - * @param [onlyOne=false] - A boolean value indicating whether to stop the traversal after finding - * the first node that matches the nodeProperty. If set to true, the function will return an array - * containing only that node. If set to false (default), the function will continue the traversal and - * return an array containing all nodes that match the node - * @param {N | undefined} beginRoot - The `beginRoot` parameter is the starting node for the traversal. It - * specifies the root node of the binary tree from which the traversal should begin. If `beginRoot` - * is `undefined`, an empty array will be returned. - * @param iterationType - The `iterationType` parameter determines the type of iteration used to - * traverse the binary tree. It can have one of the following values: - * @returns an array of nodes (N[]). + * Time Complexity: O(log n) - Average case for a balanced tree. O(n) - Visiting each node once when identifier is not node's key. + * Space Complexity: O(log n) - Space for the recursive call stack in the worst case. + */ + + /** + * Time Complexity: O(log n) - Average case for a balanced tree. O(n) - Visiting each node once when identifier is not node's key. + * Space Complexity: O(log n) - Space for the recursive call stack in the worst case. + * + * The function `getNodes` returns an array of nodes that match a given identifier, using either a + * recursive or iterative approach. + * @param {ReturnType | undefined} identifier - The `identifier` parameter is the value that you + * want to search for in the nodes of the binary tree. It can be of any type that is returned by the + * callback function `C`. + * @param {C} callback - The `callback` parameter is a function that takes a node of type `N` as its + * argument and returns a value of type `ReturnType`. The `C` type parameter represents a callback + * function type that extends the `BTNCallback` type. The `BTNCallback` type is + * @param [onlyOne=false] - A boolean flag indicating whether to stop searching after finding the + * first node that matches the identifier. If set to true, the function will return an array + * containing only the first matching node. If set to false (default), the function will continue + * searching for all nodes that match the identifier and return an array containing + * @param {BTNKey | N | undefined} beginRoot - The `beginRoot` parameter represents the starting node + * for the traversal. It can be either a key value or a node object. If it is undefined, the + * traversal will start from the root of the tree. + * @param iterationType - The `iterationType` parameter determines the type of iteration to be + * performed on the binary tree. It can have two possible values: + * @returns The method returns an array of nodes (`N[]`). */ override getNodes>( identifier: ReturnType | undefined, @@ -420,24 +460,31 @@ export class BST = BSTNode> return ans; } - // --- start additional functions + /** + * Time Complexity: O(log n) - Average case for a balanced tree. O(n) - Visiting each node once when identifier is not node's key. + * Space Complexity: O(log n) - Space for the recursive call stack in the worst case. + */ /** - * The `lesserOrGreaterTraverse` function traverses a binary tree and applies a callback function to - * nodes that have a key value lesser or greater than a target key value. - * @param callback - The `callback` parameter is a function that will be called for each node that - * meets the condition specified by the `lesserOrGreater` parameter. It takes a node as an argument - * and returns a value. + * Time Complexity: O(log n) - Average case for a balanced tree. O(n) - Visiting each node once when identifier is not node's key. + * Space Complexity: O(log n) - Space for the recursive call stack in the worst case. + * + * The `lesserOrGreaterTraverse` function traverses a binary tree and returns an array of nodes that + * are either lesser or greater than a target node, depending on the specified comparison type. + * @param {C} callback - The `callback` parameter is a function that will be called for each node + * that satisfies the condition specified by the `lesserOrGreater` parameter. It takes a single + * parameter of type `N` (the node type) and returns a value of any type. * @param {CP} lesserOrGreater - The `lesserOrGreater` parameter is used to determine whether to - * traverse nodes that are lesser than, greater than, or equal to the `targetNode`. It can take one - * of the following values: - * @param {BTNKey | N | undefined} targetNode - The `targetNode` parameter in the - * `lesserOrGreaterTraverse` function is used to specify the node from which the traversal should - * start. It can be either a reference to a specific node (`N`), the key of a node - * (`BTNKey`), or `undefined` to - * @param iterationType - The `iterationType` parameter determines whether the traversal should be - * done recursively or iteratively. It can have two possible values: - * @returns The function `lesserOrGreaterTraverse` returns an array of `ReturnType>`. + * traverse nodes that are lesser than, greater than, or equal to the `targetNode`. It is of type + * `CP`, which is a custom type representing the comparison operator. The possible values for + * `lesserOrGreater` are + * @param {BTNKey | N | undefined} targetNode - The `targetNode` parameter represents the node in the + * binary tree that you want to traverse from. It can be specified either by its key, by the node + * object itself, or it can be left undefined to start the traversal from the root of the tree. + * @param iterationType - The `iterationType` parameter determines the type of traversal to be + * performed on the binary tree. It can have two possible values: + * @returns The function `lesserOrGreaterTraverse` returns an array of values of type + * `ReturnType`, which is the return type of the callback function passed as an argument. */ lesserOrGreaterTraverse>( callback: C = this._defaultOneParamCallback as C, @@ -491,6 +538,14 @@ export class BST = BSTNode> */ /** + * Time Complexity: O(n) - Building a balanced tree from a sorted array. + * Space Complexity: O(n) - Additional space is required for the sorted array. + */ + + /** + * Time Complexity: O(n) - Building a balanced tree from a sorted array. + * Space Complexity: O(n) - Additional space is required for the sorted array. + * * The `perfectlyBalance` function balances a binary search tree by adding nodes in a way that * ensures the tree is perfectly balanced. * @param iterationType - The `iterationType` parameter is an optional parameter that specifies the @@ -537,6 +592,14 @@ export class BST = BSTNode> } /** + * Time Complexity: O(n) - Visiting each node once. + * Space Complexity: O(log n) - Space for the recursive call stack in the worst case. + */ + + /** + * Time Complexity: O(n) - Visiting each node once. + * Space Complexity: O(log n) - Space for the recursive call stack in the worst case. + * * The function checks if a binary tree is AVL balanced using either recursive or iterative approach. * @param iterationType - The `iterationType` parameter is used to determine the method of iteration * to check if the AVL tree is balanced. It can have two possible values: @@ -610,5 +673,4 @@ export class BST = BSTNode> else return CP.eq; } - // --- end additional functions } diff --git a/src/data-structures/binary-tree/rb-tree.ts b/src/data-structures/binary-tree/rb-tree.ts index c7f39fe..b9cc1e3 100644 --- a/src/data-structures/binary-tree/rb-tree.ts +++ b/src/data-structures/binary-tree/rb-tree.ts @@ -39,6 +39,11 @@ export class RedBlackTree = RedBlackTr implements IBinaryTree { + /** + * The constructor function initializes a Red-Black Tree with an optional set of options. + * @param {RBTreeOptions} [options] - The `options` parameter is an optional object that can be + * passed to the constructor. It is used to configure the RBTree object with specific options. + */ constructor(options?: RBTreeOptions) { super(options); this._root = this.NIL; @@ -59,6 +64,14 @@ export class RedBlackTree = RedBlackTr NIL: N = new RedBlackTreeNode(NaN) as unknown as N; /** + * Time Complexity: O(log n) on average (where n is the number of nodes in the tree) + * Space Complexity: O(1) + */ + + /** + * Time Complexity: O(log n) on average (where n is the number of nodes in the tree) + * Space Complexity: O(1) + * * The `add` function adds a new node to a Red-Black Tree data structure. * @param {BTNKey | N | null | undefined} keyOrNode - The `keyOrNode` parameter can be one of the * following types: @@ -122,8 +135,16 @@ export class RedBlackTree = RedBlackTr override createNode(key: BTNKey, value?: V, color: RBTNColor = RBTNColor.BLACK): N { return new RedBlackTreeNode(key, value, color) as N; } - + /** + * Time Complexity: O(log n) on average (where n is the number of nodes in the tree) + * Space Complexity: O(1) + */ + + /** + * Time Complexity: O(log n) on average (where n is the number of nodes in the tree) + * Space Complexity: O(1) + * * The `delete` function removes a node from a binary tree based on a given identifier and updates * the tree accordingly. * @param {ReturnType | null | undefined} identifier - The `identifier` parameter is the value @@ -222,19 +243,30 @@ export class RedBlackTree = RedBlackTr ): N | undefined; /** - * The function `get` returns the first node in a binary tree that matches the given property or key. - * @param {BTNKey | N} identifier - The `identifier` parameter is the key or value of - * the node that you want to find in the binary tree. It can be either a `BTNKey` or `N` - * type. - * @param callback - The `callback` parameter is a function that is used to determine whether a node - * matches the desired criteria. It takes a node as input and returns a boolean value indicating - * whether the node matches the criteria or not. The default callback function - * (`this._defaultOneParamCallback`) is used if no callback function is - * @param beginRoot - The `beginRoot` parameter is the starting point for the search. It specifies - * the root node from which the search should begin. - * @param iterationType - The `iterationType` parameter specifies the type of iteration to be - * performed when searching for a node in the binary tree. It can have one of the following values: - * @returns either the found node (of type N) or null if no node is found. + * Time Complexity: O(log n) on average (where n is the number of nodes in the tree) + * Space Complexity: O(1) + */ + + /** + * Time Complexity: O(log n) on average (where n is the number of nodes in the tree) + * Space Complexity: O(1) + * + * The function `getNode` retrieves a single node from a binary tree based on a given identifier and + * callback function. + * @param {ReturnType | undefined} identifier - The `identifier` parameter is the value used to + * identify the node you want to retrieve. It can be of any type that is the return type of the `C` + * callback function. If the `identifier` is `undefined`, it means you want to retrieve the first + * node that matches the other criteria + * @param {C} callback - The `callback` parameter is a function that will be called for each node in + * the binary tree. It is used to determine if a node matches the given identifier. The `callback` + * function should take a single parameter of type `N` (the type of the nodes in the binary tree) and + * @param {BTNKey | N | undefined} beginRoot - The `beginRoot` parameter is the starting point for + * searching for a node in a binary tree. It can be either a key value or a node object. If it is not + * provided, the search will start from the root of the binary tree. + * @param iterationType - The `iterationType` parameter is a variable that determines the type of + * iteration to be performed when searching for nodes in the binary tree. It is used in the + * `getNodes` method, which is called within the `getNode` method. + * @returns a value of type `N`, `null`, or `undefined`. */ getNode>( identifier: ReturnType | undefined, @@ -248,6 +280,14 @@ export class RedBlackTree = RedBlackTr } /** + * Time Complexity: O(log n) on average (where n is the number of nodes in the tree) + * Space Complexity: O(1) + */ + + /** + * Time Complexity: O(log n) on average (where n is the number of nodes in the tree) + * Space Complexity: O(1) + * * The function returns the successor of a given node in a red-black tree. * @param {RedBlackTreeNode} x - RedBlackTreeNode - The node for which we want to find the successor. * @returns the successor of the given RedBlackTreeNode. @@ -266,6 +306,14 @@ export class RedBlackTree = RedBlackTr } /** + * Time Complexity: O(log n) on average (where n is the number of nodes in the tree) + * Space Complexity: O(1) + */ + + /** + * Time Complexity: O(log n) on average (where n is the number of nodes in the tree) + * Space Complexity: O(1) + * * The function returns the predecessor of a given node in a red-black tree. * @param {RedBlackTreeNode} x - The parameter `x` is of type `RedBlackTreeNode`, which represents a node in a * Red-Black Tree. @@ -298,8 +346,16 @@ export class RedBlackTree = RedBlackTr } /** - * The function performs a left rotation on a red-black tree node. - * @param {RedBlackTreeNode} x - The parameter `x` is a RedBlackTreeNode object. + * Time Complexity: O(1) + * Space Complexity: O(1) + */ + + /** + * Time Complexity: O(1) + * Space Complexity: O(1) + * + * The function performs a left rotation on a binary tree node. + * @param {RedBlackTreeNode} x - The parameter `x` is of type `N`, which likely represents a node in a binary tree. */ protected _leftRotate(x: N): void { if (x.right) { @@ -322,6 +378,14 @@ export class RedBlackTree = RedBlackTr } /** + * Time Complexity: O(1) + * Space Complexity: O(1) + */ + + /** + * Time Complexity: O(1) + * Space Complexity: O(1) + * * The function performs a right rotation on a red-black tree node. * @param {RedBlackTreeNode} x - x is a RedBlackTreeNode, which represents the node that needs to be right * rotated. @@ -347,9 +411,16 @@ export class RedBlackTree = RedBlackTr } /** - * The _fixDelete function is used to rebalance the Red-Black Tree after a node deletion. - * @param {RedBlackTreeNode} x - The parameter `x` is of type `RedBlackTreeNode`, which represents a node in a - * red-black tree. + * Time Complexity: O(log n) on average (where n is the number of nodes in the tree) + * Space Complexity: O(1) + */ + + /** + * Time Complexity: O(log n) on average (where n is the number of nodes in the tree) + * Space Complexity: O(1) + * + * The function `_fixDelete` is used to fix the red-black tree after a node deletion. + * @param {RedBlackTreeNode} x - The parameter `x` represents a node in a Red-Black Tree (RBT). */ protected _fixDelete(x: N): void { let s: N | undefined; @@ -412,6 +483,14 @@ export class RedBlackTree = RedBlackTr } /** + * Time Complexity: O(1) + * Space Complexity: O(1) + */ + + /** + * Time Complexity: O(1) + * Space Complexity: O(1) + * * The function `_rbTransplant` replaces one node in a red-black tree with another node. * @param {RedBlackTreeNode} u - The parameter "u" represents a RedBlackTreeNode object. * @param {RedBlackTreeNode} v - The parameter "v" is a RedBlackTreeNode object. @@ -428,6 +507,14 @@ export class RedBlackTree = RedBlackTr } /** + * Time Complexity: O(log n) on average (where n is the number of nodes in the tree) + * Space Complexity: O(1) + */ + + /** + * Time Complexity: O(log n) on average (where n is the number of nodes in the tree) + * Space Complexity: O(1) + * * The `_fixInsert` function is used to fix the red-black tree after an insertion operation. * @param {RedBlackTreeNode} k - The parameter `k` is a RedBlackTreeNode object, which represents a node in a * red-black tree. diff --git a/src/data-structures/binary-tree/tree-multimap.ts b/src/data-structures/binary-tree/tree-multimap.ts index bfa9e94..5207159 100644 --- a/src/data-structures/binary-tree/tree-multimap.ts +++ b/src/data-structures/binary-tree/tree-multimap.ts @@ -68,17 +68,23 @@ export class TreeMultimap = TreeMultim } /** - * The `add` function adds a new node to a binary search tree, updating the count if the key already - * exists, and balancing the tree if necessary. - * @param {BTNKey | N | undefined} keyOrNode - The `keyOrNode` parameter can be either a - * `BTNKey` (which represents the key of the node to be added), a `N` (which represents a - * node to be added), or `undefined` (which represents a undefined node). - * @param [value] - The `value` parameter represents the value associated with the key that is being - * added to the binary tree. - * @param [count=1] - The `count` parameter represents the number of occurrences of the key/value - * pair that will be added to the binary tree. It has a default value of 1, which means that if no - * count is specified, the default count will be 1. - * @returns The function `add` returns a value of type `N | undefined | undefined`. + * Time Complexity: O(log n) - logarithmic time, where "n" is the number of nodes in the tree. The add method of the superclass (AVLTree) has logarithmic time complexity. + * Space Complexity: O(1) - constant space, as it doesn't use additional data structures that scale with input size. + */ + + /** + * Time Complexity: O(log n) - logarithmic time, where "n" is the number of nodes in the tree. The add method of the superclass (AVLTree) has logarithmic time complexity. + * Space Complexity: O(1) - constant space, as it doesn't use additional data structures that scale with input size. + * + * The `add` function adds a new node to the tree multimap, updating the count if the key already + * exists, and balances the tree if necessary. + * @param {BTNKey | N | null | undefined} keyOrNode - The `keyOrNode` parameter can be one of the + * following types: + * @param {V} [value] - The `value` parameter represents the value associated with the key that is + * being added to the tree. It is an optional parameter, so it can be omitted if not needed. + * @param [count=1] - The `count` parameter is an optional parameter that specifies the number of + * times the key-value pair should be added to the multimap. If not provided, the default value is 1. + * @returns a node (`N`) or `undefined`. */ override add(keyOrNode: BTNKey | N | null | undefined, value?: V, count = 1): N | undefined { if (keyOrNode === null) return undefined; @@ -150,12 +156,24 @@ export class TreeMultimap = TreeMultim } /** - * The function adds a new node to a binary tree if there is an available slot in the parent node. - * @param {N | undefined} newNode - The `newNode` parameter represents the node that needs to be added to - * the tree. It can be either a node object (`N`) or `undefined`. - * @param {N} parent - The `parent` parameter represents the parent node to which the new node will - * be added as a child. - * @returns The method `_addTo` returns either the `parent.left`, `parent.right`, or `undefined`. + * Time Complexity: O(1) - constant time, as it performs basic pointer assignments. + * Space Complexity: O(1) - constant space, as it only uses a constant amount of memory. + */ + + /** + * Time Complexity: O(1) - constant time, as it performs basic pointer assignments. + * Space Complexity: O(1) - constant space, as it only uses a constant amount of memory. + * + * The function adds a new node to a binary tree, either as the left child or the right child of a + * given parent node. + * @param {N | undefined} newNode - The `newNode` parameter represents the node that needs to be + * added to the binary tree. It can be of type `N` (which represents a node in the binary tree) or + * `undefined` if there is no node to add. + * @param {BTNKey | N | undefined} parent - The `parent` parameter represents the parent node to + * which the new node will be added as a child. It can be either a node object (`N`) or a key value + * (`BTNKey`). + * @returns The method `_addTo` returns either the `parent.left` or `parent.right` node that was + * added, or `undefined` if no node was added. */ protected override _addTo(newNode: N | undefined, parent: BTNKey | N | undefined): N | undefined { parent = this.ensureNotKey(parent); @@ -184,14 +202,22 @@ export class TreeMultimap = TreeMultim } /** - * The `addMany` function adds multiple keys or nodes to a TreeMultimap and returns an array of the - * inserted nodes. - * @param {(BTNKey | undefined)[] | (N | undefined)[]} keysOrNodes - An array of keys or nodes to be - * added to the multiset. Each element can be either a BTNKey or a TreeMultimapNode. - * @param {V[]} [data] - The `data` parameter is an optional array of values that correspond - * to the keys or nodes being added to the multiset. It is used to associate additional data with - * each key or node. - * @returns The function `addMany` returns an array of `N`, `undefined`, or `undefined` values. + * Time Complexity: O(k log n) - logarithmic time for each insertion, where "n" is the number of nodes in the tree, and "k" is the number of keys to be inserted. This is because the method iterates through the keys and calls the add method for each. + * Space Complexity: O(1) - constant space, as it doesn't use additional data structures that scale with input size. + */ + + /** + * Time Complexity: O(k log n) - logarithmic time for each insertion, where "n" is the number of nodes in the tree, and "k" is the number of keys to be inserted. This is because the method iterates through the keys and calls the add method for each. + * Space Complexity: O(1) - constant space, as it doesn't use additional data structures that scale with input size. + * + * The function `addMany` takes an array of keys or nodes and adds them to the TreeMultimap, + * returning an array of the inserted nodes. + * @param {(BTNKey | N | undefined)[]} keysOrNodes - An array of keys or nodes. Each element can be + * of type BTNKey, N, or undefined. + * @param {V[]} [data] - The `data` parameter is an optional array of values that correspond to the + * keys or nodes being added. It is used to associate data with each key or node being added to the + * TreeMultimap. If provided, the length of the `data` array should be the same as the length of the + * @returns The function `addMany` returns an array of nodes (`N`) or `undefined` values. */ override addMany(keysOrNodes: (BTNKey | N | undefined)[], data?: V[]): (N | undefined)[] { const inserted: (N | undefined)[] = []; @@ -215,10 +241,18 @@ export class TreeMultimap = TreeMultim } /** - * The `perfectlyBalance` function in TypeScript takes a sorted array of nodes and builds a balanced - * binary search tree using either a recursive or iterative approach. + * Time Complexity: O(n log n) - logarithmic time for each insertion, where "n" is the number of nodes in the tree. This is because the method calls the add method for each node. + * Space Complexity: O(n) - linear space, as it creates an array to store the sorted nodes. + */ + + /** + * Time Complexity: O(n log n) - logarithmic time for each insertion, where "n" is the number of nodes in the tree. This is because the method calls the add method for each node. + * Space Complexity: O(n) - linear space, as it creates an array to store the sorted nodes. + * + * The `perfectlyBalance` function takes a sorted array of nodes and builds a balanced binary search + * tree using either a recursive or iterative approach. * @param iterationType - The `iterationType` parameter is an optional parameter that specifies the - * type of iteration to use when building a balanced binary search tree. It can have two possible + * type of iteration to use when building the balanced binary search tree. It can have two possible * values: * @returns a boolean value. */ @@ -261,20 +295,28 @@ export class TreeMultimap = TreeMultim } /** - * The `delete` function in a binary search tree deletes a node from the tree and returns the deleted - * node along with the parent node that needs to be balanced. - * @param {ReturnType} identifier - The `identifier` parameter is either a - * `BTNKey` or a generic type `N`. It represents the property of the node that we are - * searching for. It can be a specific key value or any other property of the node. - * @param callback - The `callback` parameter is a function that takes a node as input and returns a - * value. This value is compared with the `identifier` parameter to determine if the node should be - * included in the result. The `callback` parameter has a default value of - * `this._defaultOneParamCallback` + * Time Complexity: O(log n) - logarithmic time, where "n" is the number of nodes in the tree. The delete method of the superclass (AVLTree) has logarithmic time complexity. + * Space Complexity: O(1) - constant space, as it doesn't use additional data structures that scale with input size. + */ + + /** + * Time Complexity: O(log n) - logarithmic time, where "n" is the number of nodes in the tree. The delete method of the superclass (AVLTree) has logarithmic time complexity. + * Space Complexity: O(1) - constant space, as it doesn't use additional data structures that scale with input size. + * + * The `delete` function in TypeScript is used to remove a node from a binary tree, taking into + * account the count of the node and balancing the tree if necessary. + * @param identifier - The identifier is the value or key that is used to identify the node that + * needs to be deleted from the binary tree. It can be of any type that is returned by the callback + * function. + * @param {C} callback - The `callback` parameter is a function that is used to determine if a node + * should be deleted. It is optional and defaults to a default callback function. The `callback` + * function takes one parameter, which is the identifier of the node, and returns a value that is + * used to identify the node to * @param [ignoreCount=false] - A boolean flag indicating whether to ignore the count of the node * being deleted. If set to true, the count of the node will not be considered and the node will be * deleted regardless of its count. If set to false (default), the count of the node will be * decremented by 1 and - * @returns The method `delete` returns an array of `BiTreeDeleteResult` objects. + * @returns an array of `BiTreeDeleteResult`. */ override delete>( identifier: ReturnType, @@ -344,11 +386,13 @@ export class TreeMultimap = TreeMultim } /** - * The function swaps the values of two nodes in a binary tree. - * @param {N} srcNode - The source node that needs to be swapped with the destination node. - * @param {N} destNode - The `destNode` parameter represents the destination node where the values - * from `srcNode` will be swapped into. - * @returns The method is returning the `destNode` after swapping its properties with the `srcNode`. + * The `_swap` function swaps the key, value, count, and height properties between two nodes. + * @param {BTNKey | N | undefined} srcNode - The `srcNode` parameter represents the source node from + * which the values will be swapped. It can be of type `BTNKey`, `N`, or `undefined`. + * @param {BTNKey | N | undefined} destNode - The `destNode` parameter represents the destination + * node where the values from the source node will be swapped to. + * @returns either the `destNode` object if both `srcNode` and `destNode` are defined, or `undefined` + * if either `srcNode` or `destNode` is undefined. */ protected _swap(srcNode: BTNKey | N | undefined, destNode:BTNKey | N | undefined): N | undefined{ srcNode = this.ensureNotKey(srcNode); @@ -374,4 +418,4 @@ export class TreeMultimap = TreeMultim } return undefined; } -} +} \ No newline at end of file