data-structure-typed 1.37.2 → 1.37.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/CHANGELOG.md +3 -1
  2. package/dist/data-structures/binary-tree/avl-tree.d.ts +44 -38
  3. package/dist/data-structures/binary-tree/avl-tree.js +46 -40
  4. package/dist/data-structures/binary-tree/avl-tree.js.map +1 -1
  5. package/dist/data-structures/binary-tree/binary-tree.d.ts +305 -192
  6. package/dist/data-structures/binary-tree/binary-tree.js +304 -201
  7. package/dist/data-structures/binary-tree/binary-tree.js.map +1 -1
  8. package/dist/data-structures/binary-tree/bst.d.ts +111 -64
  9. package/dist/data-structures/binary-tree/bst.js +132 -85
  10. package/dist/data-structures/binary-tree/bst.js.map +1 -1
  11. package/dist/data-structures/binary-tree/tree-multiset.d.ts +49 -41
  12. package/dist/data-structures/binary-tree/tree-multiset.js +49 -41
  13. package/dist/data-structures/binary-tree/tree-multiset.js.map +1 -1
  14. package/dist/types/data-structures/binary-tree.d.ts +2 -2
  15. package/dist/types/data-structures/binary-tree.js +6 -6
  16. package/dist/types/data-structures/binary-tree.js.map +1 -1
  17. package/lib/data-structures/binary-tree/avl-tree.d.ts +44 -38
  18. package/lib/data-structures/binary-tree/avl-tree.js +46 -40
  19. package/lib/data-structures/binary-tree/binary-tree.d.ts +305 -192
  20. package/lib/data-structures/binary-tree/binary-tree.js +305 -202
  21. package/lib/data-structures/binary-tree/bst.d.ts +111 -64
  22. package/lib/data-structures/binary-tree/bst.js +133 -86
  23. package/lib/data-structures/binary-tree/tree-multiset.d.ts +49 -41
  24. package/lib/data-structures/binary-tree/tree-multiset.js +50 -42
  25. package/lib/types/data-structures/binary-tree.d.ts +2 -2
  26. package/lib/types/data-structures/binary-tree.js +5 -5
  27. package/package.json +6 -6
  28. package/src/data-structures/binary-tree/avl-tree.ts +46 -40
  29. package/src/data-structures/binary-tree/binary-tree.ts +328 -207
  30. package/src/data-structures/binary-tree/bst.ts +135 -88
  31. package/src/data-structures/binary-tree/tree-multiset.ts +50 -42
  32. package/src/types/data-structures/binary-tree.ts +2 -2
  33. package/test/config.ts +1 -0
  34. package/test/integration/avl-tree.test.ts +7 -8
  35. package/test/integration/bst.test.ts +17 -16
  36. package/test/unit/data-structures/binary-tree/binary-tree.test.ts +50 -0
  37. package/test/unit/data-structures/binary-tree/bst.test.ts +8 -1
  38. package/test/unit/data-structures/binary-tree/tree-multiset.test.ts +2 -1
  39. package/test/unit/data-structures/linked-list/linked-list.test.ts +1 -1
  40. package/test/utils/big-o.ts +2 -1
  41. package/umd/bundle.min.js +1 -1
  42. package/umd/bundle.min.js.map +1 -1
@@ -50,11 +50,11 @@ class TreeMultiset extends avl_tree_1.AVLTree {
50
50
  return new TreeMultisetNode(key, val, count);
51
51
  }
52
52
  /**
53
- * The function swaps the location of two nodes in a tree data structure.
54
- * @param {N} srcNode - The source node that we want to _swap with the destination node.
55
- * @param {N} destNode - The `destNode` parameter represents the destination node where the values from `srcNode` will
56
- * be swapped with.
57
- * @returns the `destNode` after swapping its values with the `srcNode`.
53
+ * The function swaps the values of two nodes in a binary tree.
54
+ * @param {N} srcNode - The source node that needs to be swapped with the destination node.
55
+ * @param {N} destNode - The `destNode` parameter represents the destination node where the values
56
+ * from `srcNode` will be swapped into.
57
+ * @returns The method is returning the `destNode` after swapping its properties with the `srcNode`.
58
58
  */
59
59
  _swap(srcNode, destNode) {
60
60
  const { key, val, count, height } = destNode;
@@ -73,14 +73,17 @@ class TreeMultiset extends avl_tree_1.AVLTree {
73
73
  return destNode;
74
74
  }
75
75
  /**
76
- * The `add` function adds a new node to a binary search tree, maintaining the tree's properties and balancing if
77
- * necessary.
78
- * @param {BinaryTreeNodeKey | N} keyOrNode - The `keyOrNode` parameter can be either a `BinaryTreeNodeKey` or a `N` (which
79
- * represents a `BinaryTreeNode`).
80
- * @param [val] - The `val` parameter represents the value to be added to the binary tree node.
81
- * @param {number} [count] - The `count` parameter is an optional parameter that specifies the number of times the
82
- * value should be added to the binary tree. If the `count` parameter is not provided, it defaults to 1.
83
- * @returns The method `add` returns either the inserted node (`N`), `null`, or `undefined`.
76
+ * The `add` function adds a new node to a binary search tree, updating the count if the key already
77
+ * exists, and balancing the tree if necessary.
78
+ * @param {BinaryTreeNodeKey | N | null} keyOrNode - The `keyOrNode` parameter can be either a
79
+ * `BinaryTreeNodeKey` (which represents the key of the node to be added), a `N` (which represents a
80
+ * node to be added), or `null` (which represents a null node).
81
+ * @param [val] - The `val` parameter represents the value associated with the key that is being
82
+ * added to the binary tree.
83
+ * @param [count=1] - The `count` parameter represents the number of occurrences of the key/value
84
+ * pair that will be added to the binary tree. It has a default value of 1, which means that if no
85
+ * count is specified, the default count will be 1.
86
+ * @returns The function `add` returns a value of type `N | null | undefined`.
84
87
  */
85
88
  add(keyOrNode, val, count = 1) {
86
89
  let inserted = undefined, newNode;
@@ -159,13 +162,12 @@ class TreeMultiset extends avl_tree_1.AVLTree {
159
162
  return inserted;
160
163
  }
161
164
  /**
162
- * The function adds a new node to a binary tree if there is an available slot on the left or right side of the parent
163
- * node.
164
- * @param {N | null} newNode - The `newNode` parameter represents the node that needs to be added to the tree. It can
165
- * be either a node object (`N`) or `null`.
166
- * @param {N} parent - The `parent` parameter represents the parent node to which the new node will be added as a
167
- * child.
168
- * @returns The method returns either the `parent.left`, `parent.right`, or `undefined`.
165
+ * The function adds a new node to a binary tree if there is an available slot in the parent node.
166
+ * @param {N | null} newNode - The `newNode` parameter represents the node that needs to be added to
167
+ * the tree. It can be either a node object (`N`) or `null`.
168
+ * @param {N} parent - The `parent` parameter represents the parent node to which the new node will
169
+ * be added as a child.
170
+ * @returns The method `_addTo` returns either the `parent.left`, `parent.right`, or `undefined`.
169
171
  */
170
172
  _addTo(newNode, parent) {
171
173
  if (parent) {
@@ -194,13 +196,13 @@ class TreeMultiset extends avl_tree_1.AVLTree {
194
196
  }
195
197
  }
196
198
  /**
197
- * The `addMany` function takes an array of node IDs or nodes and adds them to the tree multiset, returning an array of
198
- * the inserted nodes.
199
- * @param {(BinaryTreeNodeKey | null)[] | (N | null)[]} keysOrNodes - An array of BinaryTreeNodeKey or BinaryTreeNode
200
- * objects, or null values.
201
- * @param {N['val'][]} [data] - The `data` parameter is an optional array of values (`N['val'][]`) that corresponds to
202
- * the nodes being added. It is used when adding nodes using the `keyOrNode` and `data` arguments in the `this.add()`
203
- * method. If provided, the `data` array should
199
+ * The `addMany` function adds multiple keys or nodes to a TreeMultiset and returns an array of the
200
+ * inserted nodes.
201
+ * @param {(BinaryTreeNodeKey | null)[] | (N | null)[]} keysOrNodes - An array of keys or nodes to be
202
+ * added to the multiset. Each element can be either a BinaryTreeNodeKey or a TreeMultisetNode.
203
+ * @param {N['val'][]} [data] - The `data` parameter is an optional array of values that correspond
204
+ * to the keys or nodes being added to the multiset. It is used to associate additional data with
205
+ * each key or node.
204
206
  * @returns The function `addMany` returns an array of `N`, `null`, or `undefined` values.
205
207
  */
206
208
  addMany(keysOrNodes, data) {
@@ -220,16 +222,19 @@ class TreeMultiset extends avl_tree_1.AVLTree {
220
222
  return inserted;
221
223
  }
222
224
  /**
223
- * The `perfectlyBalance` function takes a binary tree, performs a depth-first search to sort the nodes, and then
224
- * constructs a balanced binary search tree using either a recursive or iterative approach.
225
- * @returns The function `perfectlyBalance()` returns a boolean value.
225
+ * The `perfectlyBalance` function in TypeScript takes a sorted array of nodes and builds a balanced
226
+ * binary search tree using either a recursive or iterative approach.
227
+ * @param iterationType - The `iterationType` parameter is an optional parameter that specifies the
228
+ * type of iteration to use when building a balanced binary search tree. It can have two possible
229
+ * values:
230
+ * @returns a boolean value.
226
231
  */
227
- perfectlyBalance() {
232
+ perfectlyBalance(iterationType = this.iterationType) {
228
233
  const sorted = this.dfs(node => node, 'in'), n = sorted.length;
229
234
  if (sorted.length < 1)
230
235
  return false;
231
236
  this.clear();
232
- if (this.loopType === types_1.LoopType.RECURSIVE) {
237
+ if (iterationType === types_1.IterationType.RECURSIVE) {
233
238
  const buildBalanceBST = (l, r) => {
234
239
  if (l > r)
235
240
  return;
@@ -261,13 +266,16 @@ class TreeMultiset extends avl_tree_1.AVLTree {
261
266
  }
262
267
  }
263
268
  /**
264
- * The `delete` function removes a node from a binary search tree and returns the deleted node along with the parent
265
- * node that needs to be balanced.
266
- * @param {N | BinaryTreeNodeKey | null} nodeOrKey - The `nodeOrKey` parameter can be one of the following:
267
- * @param {boolean} [ignoreCount] - The `ignoreCount` parameter is an optional boolean parameter that determines
268
- * whether to ignore the count of the node being removed. If `ignoreCount` is set to `true`, the count of the node will
269
- * not be taken into account when removing it. If `ignoreCount` is set to `false
270
- * @returns The function `delete` returns an array of `BinaryTreeDeletedResult<N>` objects.
269
+ * The `delete` function in a binary search tree deletes a node from the tree and returns the deleted
270
+ * node along with the parent node that needs to be balanced.
271
+ * @param {N | BinaryTreeNodeKey} nodeOrKey - The `nodeOrKey` parameter can be either a node object
272
+ * (`N`) or a key value (`BinaryTreeNodeKey`). It represents the node or key that needs to be deleted
273
+ * from the binary tree.
274
+ * @param [ignoreCount=false] - A boolean flag indicating whether to ignore the count of the node
275
+ * being deleted. If set to true, the count of the node will not be considered and the node will be
276
+ * deleted regardless of its count. If set to false (default), the count of the node will be
277
+ * decremented by 1 and
278
+ * @returns The method `delete` returns an array of `BinaryTreeDeletedResult<N>` objects.
271
279
  */
272
280
  delete(nodeOrKey, ignoreCount = false) {
273
281
  const bstDeletedResult = [];
@@ -326,14 +334,14 @@ class TreeMultiset extends avl_tree_1.AVLTree {
326
334
  return bstDeletedResult;
327
335
  }
328
336
  /**
329
- * The clear() function clears the data and sets the count to 0.
337
+ * The clear() function clears the contents of a data structure and sets the count to zero.
330
338
  */
331
339
  clear() {
332
340
  super.clear();
333
341
  this._setCount(0);
334
342
  }
335
343
  /**
336
- * The function "_setCount" is used to set the value of the "_count" property.
344
+ * The function sets the value of the "_count" property.
337
345
  * @param {number} v - number
338
346
  */
339
347
  _setCount(v) {
@@ -1 +1 @@
1
- {"version":3,"file":"tree-multiset.js","sourceRoot":"","sources":["../../../src/data-structures/binary-tree/tree-multiset.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"tree-multiset.js","sourceRoot":"","sources":["../../../src/data-structures/binary-tree/tree-multiset.ts"],"names":[],"mappings":"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"}
@@ -5,7 +5,7 @@ import { BinaryTreeNode } from '../../data-structures/binary-tree';
5
5
  * - `iterative`: Indicates the iterative loop type (with loops that use iterations).
6
6
  * - `recursive`: Indicates the recursive loop type (with loops that call themselves).
7
7
  */
8
- export declare enum LoopType {
8
+ export declare enum IterationType {
9
9
  ITERATIVE = "ITERATIVE",
10
10
  RECURSIVE = "RECURSIVE"
11
11
  }
@@ -31,5 +31,5 @@ export type BinaryTreeDeletedResult<N> = {
31
31
  export type BinaryTreeNodeProperties<N extends BinaryTreeNode<N['val'], N>> = BinaryTreeNodeProperty<N>[];
32
32
  export type BinaryTreeNodeNested<T> = BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, BinaryTreeNode<T, any>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>;
33
33
  export type BinaryTreeOptions = {
34
- loopType?: LoopType;
34
+ iterationType?: IterationType;
35
35
  };
@@ -1,17 +1,17 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FamilyPosition = exports.LoopType = void 0;
3
+ exports.FamilyPosition = exports.IterationType = void 0;
4
4
  /**
5
5
  * Enum representing different loop types.
6
6
  *
7
7
  * - `iterative`: Indicates the iterative loop type (with loops that use iterations).
8
8
  * - `recursive`: Indicates the recursive loop type (with loops that call themselves).
9
9
  */
10
- var LoopType;
11
- (function (LoopType) {
12
- LoopType["ITERATIVE"] = "ITERATIVE";
13
- LoopType["RECURSIVE"] = "RECURSIVE";
14
- })(LoopType || (exports.LoopType = LoopType = {}));
10
+ var IterationType;
11
+ (function (IterationType) {
12
+ IterationType["ITERATIVE"] = "ITERATIVE";
13
+ IterationType["RECURSIVE"] = "RECURSIVE";
14
+ })(IterationType || (exports.IterationType = IterationType = {}));
15
15
  var FamilyPosition;
16
16
  (function (FamilyPosition) {
17
17
  FamilyPosition["ROOT"] = "ROOT";
@@ -1 +1 @@
1
- {"version":3,"file":"binary-tree.js","sourceRoot":"","sources":["../../../src/types/data-structures/binary-tree.ts"],"names":[],"mappings":";;;AAEA;;;;;GAKG;AAEH,IAAY,QAGX;AAHD,WAAY,QAAQ;IAClB,mCAAuB,CAAA;IACvB,mCAAuB,CAAA;AACzB,CAAC,EAHW,QAAQ,wBAAR,QAAQ,QAGnB;AAED,IAAY,cAQX;AARD,WAAY,cAAc;IACxB,+BAAa,CAAA;IACb,+BAAa,CAAA;IACb,iCAAe,CAAA;IACf,yCAAuB,CAAA;IACvB,2CAAyB,CAAA;IACzB,uCAAqB,CAAA;IACrB,uCAAqB,CAAA;AACvB,CAAC,EARW,cAAc,8BAAd,cAAc,QAQzB"}
1
+ {"version":3,"file":"binary-tree.js","sourceRoot":"","sources":["../../../src/types/data-structures/binary-tree.ts"],"names":[],"mappings":";;;AAEA;;;;;GAKG;AAEH,IAAY,aAGX;AAHD,WAAY,aAAa;IACvB,wCAAuB,CAAA;IACvB,wCAAuB,CAAA;AACzB,CAAC,EAHW,aAAa,6BAAb,aAAa,QAGxB;AAED,IAAY,cAQX;AARD,WAAY,cAAc;IACxB,+BAAa,CAAA;IACb,+BAAa,CAAA;IACb,iCAAe,CAAA;IACf,yCAAuB,CAAA;IACvB,2CAAyB,CAAA;IACzB,uCAAqB,CAAA;IACrB,uCAAqB,CAAA;AACvB,CAAC,EARW,cAAc,8BAAd,cAAc,QAQzB"}
@@ -21,74 +21,80 @@ export declare class AVLTree<N extends AVLTreeNode<N['val'], N> = AVLTreeNode> e
21
21
  */
22
22
  constructor(options?: AVLTreeOptions);
23
23
  /**
24
- * The `_swap` function swaps the location of two nodes in a binary tree.
25
- * @param {N} srcNode - The source node that you want to _swap with the destination node.
26
- * @param {N} destNode - The `destNode` parameter represents the destination node where the values from `srcNode` will
27
- * be swapped to.
28
- * @returns The `destNode` is being returned.
24
+ * The function swaps the key, value, and height properties between two nodes in a binary tree.
25
+ * @param {N} srcNode - The `srcNode` parameter represents the source node that needs to be swapped
26
+ * with the `destNode`.
27
+ * @param {N} destNode - The `destNode` parameter represents the destination node where the values
28
+ * from the source node (`srcNode`) will be swapped to.
29
+ * @returns The method is returning the `destNode` after swapping its properties with the `srcNode`.
29
30
  */
30
31
  protected _swap(srcNode: N, destNode: N): N;
31
32
  /**
32
- * The function creates a new AVL tree node with the given key and value.
33
- * @param {BinaryTreeNodeKey} key - The `key` parameter is the identifier for the binary tree node. It is used to uniquely
34
- * identify each node in the tree.
35
- * @param [val] - The `val` parameter is an optional value that can be assigned to the node. It represents the value
36
- * that will be stored in the node.
33
+ * The function creates a new AVL tree node with the specified key and value.
34
+ * @param {BinaryTreeNodeKey} key - The key parameter is the key value that will be associated with
35
+ * the new node. It is used to determine the position of the node in the binary search tree.
36
+ * @param [val] - The parameter `val` is an optional value that can be assigned to the node. It is of
37
+ * type `N['val']`, which means it can be any value that is assignable to the `val` property of the
38
+ * node type `N`.
37
39
  * @returns a new AVLTreeNode object with the specified key and value.
38
40
  */
39
41
  createNode(key: BinaryTreeNodeKey, val?: N['val']): N;
40
42
  /**
41
- * The function overrides the add method of a binary tree node and balances the tree after inserting a new node.
42
- * @param {BinaryTreeNodeKey} key - The `key` parameter is the identifier of the binary tree node that we want to add.
43
- * @param [val] - The `val` parameter is an optional value that can be assigned to the node being added. It is of type
44
- * `N['val']`, which means it should be of the same type as the `val` property of the nodes in the binary tree.
45
- * @returns The method is returning the inserted node, or null or undefined if the insertion was not successful.
43
+ * The function overrides the add method of a binary tree node and balances the tree after inserting
44
+ * a new node.
45
+ * @param {BinaryTreeNodeKey | N | null} keyOrNode - The `keyOrNode` parameter can accept either a
46
+ * `BinaryTreeNodeKey` or a `N` (which represents a node in the binary tree) or `null`.
47
+ * @param [val] - The `val` parameter is the value that you want to assign to the new node that you
48
+ * are adding to the binary search tree.
49
+ * @returns The method is returning the inserted node (`N`), `null`, or `undefined`.
46
50
  */
47
- add(key: BinaryTreeNodeKey, val?: N['val']): N | null | undefined;
51
+ add(keyOrNode: BinaryTreeNodeKey | N | null, val?: N['val']): N | null | undefined;
48
52
  /**
49
- * The function overrides the delete method of a binary tree and performs additional operations to balance the tree after
50
- * deletion.
51
- * @param {BinaryTreeNodeKey} key - The `key` parameter represents the identifier of the binary tree node that needs to be
52
- * removed.
53
+ * The function overrides the delete method of a binary tree and balances the tree after deleting a
54
+ * node if necessary.
55
+ * @param {N | BinaryTreeNodeKey} nodeOrKey - The `nodeOrKey` parameter can be either a node object
56
+ * (`N`) or a key value (`BinaryTreeNodeKey`).
53
57
  * @returns The method is returning an array of `BinaryTreeDeletedResult<N>` objects.
54
58
  */
55
- delete(key: BinaryTreeNodeKey): BinaryTreeDeletedResult<N>[];
59
+ delete(nodeOrKey: N | BinaryTreeNodeKey): BinaryTreeDeletedResult<N>[];
56
60
  /**
57
- * The balance factor of a given AVL tree node is calculated by subtracting the height of its left subtree from the
58
- * height of its right subtree.
59
- * @param node - The parameter "node" is of type N, which represents a node in an AVL tree.
60
- * @returns The balance factor of the given AVL tree node.
61
+ * The function calculates the balance factor of a node in a binary tree.
62
+ * @param {N} node - The parameter "node" represents a node in a binary tree data structure.
63
+ * @returns the balance factor of a given node. The balance factor is calculated by subtracting the
64
+ * height of the left subtree from the height of the right subtree.
61
65
  */
62
66
  protected _balanceFactor(node: N): number;
63
67
  /**
64
- * The function updates the height of a node in an AVL tree based on the heights of its left and right subtrees.
65
- * @param node - The parameter `node` is an AVLTreeNode object, which represents a node in an AVL tree.
68
+ * The function updates the height of a node in a binary tree based on the heights of its left and
69
+ * right children.
70
+ * @param {N} node - The parameter "node" represents a node in a binary tree data structure.
66
71
  */
67
72
  protected _updateHeight(node: N): void;
68
73
  /**
69
- * The `_balancePath` function balances the AVL tree by performing appropriate rotations based on the balance factor of
70
- * each node in the path from the given node to the root.
71
- * @param node - The `node` parameter is an AVLTreeNode object, which represents a node in an AVL tree.
74
+ * The `_balancePath` function is used to update the heights of nodes and perform rotation operations
75
+ * to restore balance in an AVL tree after inserting a node.
76
+ * @param {N} node - The `node` parameter in the `_balancePath` function represents the node in the
77
+ * AVL tree that needs to be balanced.
72
78
  */
73
79
  protected _balancePath(node: N): void;
74
80
  /**
75
- * The `_balanceLL` function performs a left-left rotation on an AVL tree to balance it.
76
- * @param A - The parameter A is an AVLTreeNode object.
81
+ * The function `_balanceLL` performs a left-left rotation to balance a binary tree.
82
+ * @param {N} A - A is a node in a binary tree.
77
83
  */
78
84
  protected _balanceLL(A: N): void;
79
85
  /**
80
- * The `_balanceLR` function performs a left-right rotation to balance an AVL tree.
81
- * @param A - A is an AVLTreeNode object.
86
+ * The `_balanceLR` function performs a left-right rotation to balance a binary tree.
87
+ * @param {N} A - A is a node in a binary tree.
82
88
  */
83
89
  protected _balanceLR(A: N): void;
84
90
  /**
85
- * The `_balanceRR` function performs a right-right rotation on an AVL tree to balance it.
86
- * @param A - The parameter A is an AVLTreeNode object.
91
+ * The function `_balanceRR` performs a right-right rotation to balance a binary tree.
92
+ * @param {N} A - A is a node in a binary tree.
87
93
  */
88
94
  protected _balanceRR(A: N): void;
89
95
  /**
90
- * The `_balanceRL` function performs a right-left rotation to balance an AVL tree.
91
- * @param A - A is an AVLTreeNode object.
96
+ * The function `_balanceRL` performs a right-left rotation to balance a binary tree.
97
+ * @param {N} A - A is a node in a binary tree.
92
98
  */
93
99
  protected _balanceRL(A: N): void;
94
100
  }
@@ -23,11 +23,12 @@ export class AVLTree extends BST {
23
23
  super(options);
24
24
  }
25
25
  /**
26
- * The `_swap` function swaps the location of two nodes in a binary tree.
27
- * @param {N} srcNode - The source node that you want to _swap with the destination node.
28
- * @param {N} destNode - The `destNode` parameter represents the destination node where the values from `srcNode` will
29
- * be swapped to.
30
- * @returns The `destNode` is being returned.
26
+ * The function swaps the key, value, and height properties between two nodes in a binary tree.
27
+ * @param {N} srcNode - The `srcNode` parameter represents the source node that needs to be swapped
28
+ * with the `destNode`.
29
+ * @param {N} destNode - The `destNode` parameter represents the destination node where the values
30
+ * from the source node (`srcNode`) will be swapped to.
31
+ * @returns The method is returning the `destNode` after swapping its properties with the `srcNode`.
31
32
  */
32
33
  _swap(srcNode, destNode) {
33
34
  const { key, val, height } = destNode;
@@ -44,39 +45,42 @@ export class AVLTree extends BST {
44
45
  return destNode;
45
46
  }
46
47
  /**
47
- * The function creates a new AVL tree node with the given key and value.
48
- * @param {BinaryTreeNodeKey} key - The `key` parameter is the identifier for the binary tree node. It is used to uniquely
49
- * identify each node in the tree.
50
- * @param [val] - The `val` parameter is an optional value that can be assigned to the node. It represents the value
51
- * that will be stored in the node.
48
+ * The function creates a new AVL tree node with the specified key and value.
49
+ * @param {BinaryTreeNodeKey} key - The key parameter is the key value that will be associated with
50
+ * the new node. It is used to determine the position of the node in the binary search tree.
51
+ * @param [val] - The parameter `val` is an optional value that can be assigned to the node. It is of
52
+ * type `N['val']`, which means it can be any value that is assignable to the `val` property of the
53
+ * node type `N`.
52
54
  * @returns a new AVLTreeNode object with the specified key and value.
53
55
  */
54
56
  createNode(key, val) {
55
57
  return new AVLTreeNode(key, val);
56
58
  }
57
59
  /**
58
- * The function overrides the add method of a binary tree node and balances the tree after inserting a new node.
59
- * @param {BinaryTreeNodeKey} key - The `key` parameter is the identifier of the binary tree node that we want to add.
60
- * @param [val] - The `val` parameter is an optional value that can be assigned to the node being added. It is of type
61
- * `N['val']`, which means it should be of the same type as the `val` property of the nodes in the binary tree.
62
- * @returns The method is returning the inserted node, or null or undefined if the insertion was not successful.
60
+ * The function overrides the add method of a binary tree node and balances the tree after inserting
61
+ * a new node.
62
+ * @param {BinaryTreeNodeKey | N | null} keyOrNode - The `keyOrNode` parameter can accept either a
63
+ * `BinaryTreeNodeKey` or a `N` (which represents a node in the binary tree) or `null`.
64
+ * @param [val] - The `val` parameter is the value that you want to assign to the new node that you
65
+ * are adding to the binary search tree.
66
+ * @returns The method is returning the inserted node (`N`), `null`, or `undefined`.
63
67
  */
64
- add(key, val) {
68
+ add(keyOrNode, val) {
65
69
  // TODO support node as a param
66
- const inserted = super.add(key, val);
70
+ const inserted = super.add(keyOrNode, val);
67
71
  if (inserted)
68
72
  this._balancePath(inserted);
69
73
  return inserted;
70
74
  }
71
75
  /**
72
- * The function overrides the delete method of a binary tree and performs additional operations to balance the tree after
73
- * deletion.
74
- * @param {BinaryTreeNodeKey} key - The `key` parameter represents the identifier of the binary tree node that needs to be
75
- * removed.
76
+ * The function overrides the delete method of a binary tree and balances the tree after deleting a
77
+ * node if necessary.
78
+ * @param {N | BinaryTreeNodeKey} nodeOrKey - The `nodeOrKey` parameter can be either a node object
79
+ * (`N`) or a key value (`BinaryTreeNodeKey`).
76
80
  * @returns The method is returning an array of `BinaryTreeDeletedResult<N>` objects.
77
81
  */
78
- delete(key) {
79
- const deletedResults = super.delete(key);
82
+ delete(nodeOrKey) {
83
+ const deletedResults = super.delete(nodeOrKey);
80
84
  for (const { needBalanced } of deletedResults) {
81
85
  if (needBalanced) {
82
86
  this._balancePath(needBalanced);
@@ -85,10 +89,10 @@ export class AVLTree extends BST {
85
89
  return deletedResults;
86
90
  }
87
91
  /**
88
- * The balance factor of a given AVL tree node is calculated by subtracting the height of its left subtree from the
89
- * height of its right subtree.
90
- * @param node - The parameter "node" is of type N, which represents a node in an AVL tree.
91
- * @returns The balance factor of the given AVL tree node.
92
+ * The function calculates the balance factor of a node in a binary tree.
93
+ * @param {N} node - The parameter "node" represents a node in a binary tree data structure.
94
+ * @returns the balance factor of a given node. The balance factor is calculated by subtracting the
95
+ * height of the left subtree from the height of the right subtree.
92
96
  */
93
97
  _balanceFactor(node) {
94
98
  if (!node.right)
@@ -101,8 +105,9 @@ export class AVLTree extends BST {
101
105
  return node.right.height - node.left.height;
102
106
  }
103
107
  /**
104
- * The function updates the height of a node in an AVL tree based on the heights of its left and right subtrees.
105
- * @param node - The parameter `node` is an AVLTreeNode object, which represents a node in an AVL tree.
108
+ * The function updates the height of a node in a binary tree based on the heights of its left and
109
+ * right children.
110
+ * @param {N} node - The parameter "node" represents a node in a binary tree data structure.
106
111
  */
107
112
  _updateHeight(node) {
108
113
  if (!node.left && !node.right)
@@ -117,9 +122,10 @@ export class AVLTree extends BST {
117
122
  node.height = 1 + Math.max(node.right.height, node.left.height);
118
123
  }
119
124
  /**
120
- * The `_balancePath` function balances the AVL tree by performing appropriate rotations based on the balance factor of
121
- * each node in the path from the given node to the root.
122
- * @param node - The `node` parameter is an AVLTreeNode object, which represents a node in an AVL tree.
125
+ * The `_balancePath` function is used to update the heights of nodes and perform rotation operations
126
+ * to restore balance in an AVL tree after inserting a node.
127
+ * @param {N} node - The `node` parameter in the `_balancePath` function represents the node in the
128
+ * AVL tree that needs to be balanced.
123
129
  */
124
130
  _balancePath(node) {
125
131
  const path = this.getPathToRoot(node, false); // first O(log n) + O(log n)
@@ -161,8 +167,8 @@ export class AVLTree extends BST {
161
167
  }
162
168
  }
163
169
  /**
164
- * The `_balanceLL` function performs a left-left rotation on an AVL tree to balance it.
165
- * @param A - The parameter A is an AVLTreeNode object.
170
+ * The function `_balanceLL` performs a left-left rotation to balance a binary tree.
171
+ * @param {N} A - A is a node in a binary tree.
166
172
  */
167
173
  _balanceLL(A) {
168
174
  const parentOfA = A.parent;
@@ -195,8 +201,8 @@ export class AVLTree extends BST {
195
201
  this._updateHeight(B);
196
202
  }
197
203
  /**
198
- * The `_balanceLR` function performs a left-right rotation to balance an AVL tree.
199
- * @param A - A is an AVLTreeNode object.
204
+ * The `_balanceLR` function performs a left-right rotation to balance a binary tree.
205
+ * @param {N} A - A is a node in a binary tree.
200
206
  */
201
207
  _balanceLR(A) {
202
208
  const parentOfA = A.parent;
@@ -244,8 +250,8 @@ export class AVLTree extends BST {
244
250
  C && this._updateHeight(C);
245
251
  }
246
252
  /**
247
- * The `_balanceRR` function performs a right-right rotation on an AVL tree to balance it.
248
- * @param A - The parameter A is an AVLTreeNode object.
253
+ * The function `_balanceRR` performs a right-right rotation to balance a binary tree.
254
+ * @param {N} A - A is a node in a binary tree.
249
255
  */
250
256
  _balanceRR(A) {
251
257
  const parentOfA = A.parent;
@@ -279,8 +285,8 @@ export class AVLTree extends BST {
279
285
  B && this._updateHeight(B);
280
286
  }
281
287
  /**
282
- * The `_balanceRL` function performs a right-left rotation to balance an AVL tree.
283
- * @param A - A is an AVLTreeNode object.
288
+ * The function `_balanceRL` performs a right-left rotation to balance a binary tree.
289
+ * @param {N} A - A is a node in a binary tree.
284
290
  */
285
291
  _balanceRL(A) {
286
292
  const parentOfA = A.parent;