deque-typed 1.49.0 → 1.49.1

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 (82) hide show
  1. package/dist/data-structures/binary-tree/avl-tree.d.ts +10 -12
  2. package/dist/data-structures/binary-tree/avl-tree.js +3 -4
  3. package/dist/data-structures/binary-tree/binary-tree.d.ts +58 -58
  4. package/dist/data-structures/binary-tree/binary-tree.js +6 -6
  5. package/dist/data-structures/binary-tree/bst.d.ts +15 -15
  6. package/dist/data-structures/binary-tree/bst.js +3 -3
  7. package/dist/data-structures/binary-tree/rb-tree.d.ts +11 -11
  8. package/dist/data-structures/binary-tree/rb-tree.js +5 -6
  9. package/dist/data-structures/binary-tree/tree-multimap.d.ts +14 -14
  10. package/dist/data-structures/binary-tree/tree-multimap.js +3 -3
  11. package/dist/data-structures/graph/abstract-graph.d.ts +9 -3
  12. package/dist/data-structures/graph/abstract-graph.js +27 -31
  13. package/dist/data-structures/graph/directed-graph.d.ts +8 -1
  14. package/dist/data-structures/graph/directed-graph.js +1 -8
  15. package/dist/data-structures/graph/map-graph.d.ts +1 -1
  16. package/dist/data-structures/graph/undirected-graph.d.ts +8 -1
  17. package/dist/data-structures/graph/undirected-graph.js +1 -8
  18. package/dist/data-structures/hash/hash-map.d.ts +14 -2
  19. package/dist/data-structures/hash/hash-map.js +19 -8
  20. package/dist/data-structures/hash/hash-table.d.ts +2 -2
  21. package/dist/data-structures/heap/heap.d.ts +14 -3
  22. package/dist/data-structures/heap/heap.js +12 -0
  23. package/dist/data-structures/heap/max-heap.d.ts +11 -1
  24. package/dist/data-structures/heap/max-heap.js +10 -7
  25. package/dist/data-structures/heap/min-heap.d.ts +11 -1
  26. package/dist/data-structures/heap/min-heap.js +10 -7
  27. package/dist/data-structures/linked-list/doubly-linked-list.d.ts +8 -2
  28. package/dist/data-structures/linked-list/doubly-linked-list.js +6 -7
  29. package/dist/data-structures/linked-list/singly-linked-list.d.ts +2 -2
  30. package/dist/data-structures/linked-list/singly-linked-list.js +0 -7
  31. package/dist/data-structures/priority-queue/max-priority-queue.d.ts +1 -1
  32. package/dist/data-structures/priority-queue/max-priority-queue.js +0 -7
  33. package/dist/data-structures/priority-queue/min-priority-queue.d.ts +1 -1
  34. package/dist/data-structures/priority-queue/min-priority-queue.js +0 -7
  35. package/dist/data-structures/priority-queue/priority-queue.d.ts +9 -1
  36. package/dist/data-structures/priority-queue/priority-queue.js +8 -7
  37. package/dist/data-structures/queue/deque.d.ts +6 -5
  38. package/dist/data-structures/queue/deque.js +6 -12
  39. package/dist/data-structures/queue/queue.d.ts +18 -3
  40. package/dist/data-structures/queue/queue.js +16 -6
  41. package/dist/data-structures/stack/stack.d.ts +15 -5
  42. package/dist/data-structures/stack/stack.js +7 -4
  43. package/dist/data-structures/trie/trie.d.ts +13 -3
  44. package/dist/data-structures/trie/trie.js +11 -8
  45. package/dist/interfaces/binary-tree.d.ts +4 -4
  46. package/dist/types/common.d.ts +32 -8
  47. package/dist/types/common.js +22 -1
  48. package/dist/types/data-structures/binary-tree/binary-tree.d.ts +1 -24
  49. package/dist/types/data-structures/binary-tree/binary-tree.js +0 -22
  50. package/dist/types/data-structures/binary-tree/rb-tree.d.ts +1 -1
  51. package/dist/types/data-structures/binary-tree/tree-multimap.d.ts +1 -1
  52. package/package.json +2 -2
  53. package/src/data-structures/binary-tree/avl-tree.ts +14 -14
  54. package/src/data-structures/binary-tree/binary-tree.ts +74 -77
  55. package/src/data-structures/binary-tree/bst.ts +18 -17
  56. package/src/data-structures/binary-tree/rb-tree.ts +17 -18
  57. package/src/data-structures/binary-tree/tree-multimap.ts +22 -20
  58. package/src/data-structures/graph/abstract-graph.ts +35 -25
  59. package/src/data-structures/graph/directed-graph.ts +2 -2
  60. package/src/data-structures/graph/map-graph.ts +1 -1
  61. package/src/data-structures/graph/undirected-graph.ts +2 -2
  62. package/src/data-structures/hash/hash-map.ts +20 -3
  63. package/src/data-structures/hash/hash-table.ts +3 -3
  64. package/src/data-structures/heap/heap.ts +14 -3
  65. package/src/data-structures/heap/max-heap.ts +11 -2
  66. package/src/data-structures/heap/min-heap.ts +11 -2
  67. package/src/data-structures/linked-list/doubly-linked-list.ts +9 -3
  68. package/src/data-structures/linked-list/singly-linked-list.ts +3 -3
  69. package/src/data-structures/priority-queue/max-priority-queue.ts +1 -1
  70. package/src/data-structures/priority-queue/min-priority-queue.ts +1 -1
  71. package/src/data-structures/priority-queue/priority-queue.ts +9 -2
  72. package/src/data-structures/queue/deque.ts +7 -9
  73. package/src/data-structures/queue/queue.ts +18 -3
  74. package/src/data-structures/stack/stack.ts +16 -6
  75. package/src/data-structures/trie/trie.ts +13 -4
  76. package/src/interfaces/binary-tree.ts +5 -5
  77. package/src/types/common.ts +37 -12
  78. package/src/types/data-structures/binary-tree/avl-tree.ts +0 -1
  79. package/src/types/data-structures/binary-tree/binary-tree.ts +1 -26
  80. package/src/types/data-structures/binary-tree/bst.ts +0 -1
  81. package/src/types/data-structures/binary-tree/rb-tree.ts +1 -1
  82. package/src/types/data-structures/binary-tree/tree-multimap.ts +1 -1
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CP = exports.BSTVariant = void 0;
3
+ exports.FamilyPosition = exports.IterationType = exports.CP = exports.BSTVariant = void 0;
4
4
  var BSTVariant;
5
5
  (function (BSTVariant) {
6
6
  BSTVariant["MIN"] = "MIN";
@@ -12,3 +12,24 @@ var CP;
12
12
  CP["eq"] = "eq";
13
13
  CP["gt"] = "gt";
14
14
  })(CP = exports.CP || (exports.CP = {}));
15
+ /**
16
+ * Enum representing different loop types.
17
+ *
18
+ * - `iterative`: Indicates the iterative loop type (with loops that use iterations).
19
+ * - `recursive`: Indicates the recursive loop type (with loops that call themselves).
20
+ */
21
+ var IterationType;
22
+ (function (IterationType) {
23
+ IterationType["ITERATIVE"] = "ITERATIVE";
24
+ IterationType["RECURSIVE"] = "RECURSIVE";
25
+ })(IterationType = exports.IterationType || (exports.IterationType = {}));
26
+ var FamilyPosition;
27
+ (function (FamilyPosition) {
28
+ FamilyPosition["ROOT"] = "ROOT";
29
+ FamilyPosition["LEFT"] = "LEFT";
30
+ FamilyPosition["RIGHT"] = "RIGHT";
31
+ FamilyPosition["ROOT_LEFT"] = "ROOT_LEFT";
32
+ FamilyPosition["ROOT_RIGHT"] = "ROOT_RIGHT";
33
+ FamilyPosition["ISOLATED"] = "ISOLATED";
34
+ FamilyPosition["MAL_NODE"] = "MAL_NODE";
35
+ })(FamilyPosition = exports.FamilyPosition || (exports.FamilyPosition = {}));
@@ -1,31 +1,8 @@
1
1
  import { BinaryTree, BinaryTreeNode } from '../../../data-structures';
2
- /**
3
- * Enum representing different loop types.
4
- *
5
- * - `iterative`: Indicates the iterative loop type (with loops that use iterations).
6
- * - `recursive`: Indicates the recursive loop type (with loops that call themselves).
7
- */
8
- export declare enum IterationType {
9
- ITERATIVE = "ITERATIVE",
10
- RECURSIVE = "RECURSIVE"
11
- }
12
- export declare enum FamilyPosition {
13
- ROOT = "ROOT",
14
- LEFT = "LEFT",
15
- RIGHT = "RIGHT",
16
- ROOT_LEFT = "ROOT_LEFT",
17
- ROOT_RIGHT = "ROOT_RIGHT",
18
- ISOLATED = "ISOLATED",
19
- MAL_NODE = "MAL_NODE"
20
- }
21
- export type BiTreeDeleteResult<N> = {
22
- deleted: N | null | undefined;
23
- needBalanced: N | null | undefined;
24
- };
2
+ import { IterationType } from "../../common";
25
3
  export type BinaryTreeNodeNested<K, V> = BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, BinaryTreeNode<K, V, any>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>;
26
4
  export type BinaryTreeNested<K, V, N extends BinaryTreeNode<K, V, N>> = BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, BinaryTree<K, V, N, any>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>;
27
5
  export type BinaryTreeOptions<K> = {
28
6
  iterationType: IterationType;
29
7
  extractor: (key: K) => number;
30
8
  };
31
- export type NodeDisplayLayout = [string[], number, number, number];
@@ -1,24 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FamilyPosition = exports.IterationType = void 0;
4
- /**
5
- * Enum representing different loop types.
6
- *
7
- * - `iterative`: Indicates the iterative loop type (with loops that use iterations).
8
- * - `recursive`: Indicates the recursive loop type (with loops that call themselves).
9
- */
10
- var IterationType;
11
- (function (IterationType) {
12
- IterationType["ITERATIVE"] = "ITERATIVE";
13
- IterationType["RECURSIVE"] = "RECURSIVE";
14
- })(IterationType = exports.IterationType || (exports.IterationType = {}));
15
- var FamilyPosition;
16
- (function (FamilyPosition) {
17
- FamilyPosition["ROOT"] = "ROOT";
18
- FamilyPosition["LEFT"] = "LEFT";
19
- FamilyPosition["RIGHT"] = "RIGHT";
20
- FamilyPosition["ROOT_LEFT"] = "ROOT_LEFT";
21
- FamilyPosition["ROOT_RIGHT"] = "ROOT_RIGHT";
22
- FamilyPosition["ISOLATED"] = "ISOLATED";
23
- FamilyPosition["MAL_NODE"] = "MAL_NODE";
24
- })(FamilyPosition = exports.FamilyPosition || (exports.FamilyPosition = {}));
@@ -1,5 +1,5 @@
1
1
  import { RedBlackTree, RedBlackTreeNode } from '../../../data-structures';
2
- import { BSTOptions } from "./bst";
2
+ import type { BSTOptions } from "./bst";
3
3
  export declare enum RBTNColor {
4
4
  RED = 1,
5
5
  BLACK = 0
@@ -1,5 +1,5 @@
1
1
  import { TreeMultimap, TreeMultimapNode } from '../../../data-structures';
2
- import { AVLTreeOptions } from './avl-tree';
2
+ import type { AVLTreeOptions } from './avl-tree';
3
3
  export type TreeMultimapNodeNested<K, V> = TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, TreeMultimapNode<K, V, any>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>;
4
4
  export type TreeMultimapNested<K, V, N extends TreeMultimapNode<K, V, N>> = TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, TreeMultimap<K, V, N, any>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>;
5
5
  export type TreeMultimapOptions<K> = Omit<AVLTreeOptions<K>, 'isMergeDuplicatedNodeByKey'> & {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deque-typed",
3
- "version": "1.49.0",
3
+ "version": "1.49.1",
4
4
  "description": "Deque. Javascript & Typescript Data Structure.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -119,6 +119,6 @@
119
119
  "typescript": "^4.9.5"
120
120
  },
121
121
  "dependencies": {
122
- "data-structure-typed": "^1.48.9"
122
+ "data-structure-typed": "^1.49.1"
123
123
  }
124
124
  }
@@ -10,11 +10,12 @@ import type {
10
10
  AVLTreeNested,
11
11
  AVLTreeNodeNested,
12
12
  AVLTreeOptions,
13
- BiTreeDeleteResult,
14
- BSTNodeKeyOrNode,
15
- BTNodeExemplar
13
+ BinaryTreeDeleteResult,
14
+ BSTNKeyOrNode,
15
+ BTNCallback,
16
+ BTNExemplar,
17
+ BTNKeyOrNode
16
18
  } from '../../types';
17
- import { BTNCallback, BTNodeKeyOrNode } from '../../types';
18
19
  import { IBinaryTree } from '../../interfaces';
19
20
 
20
21
  export class AVLTreeNode<K = any, V = any, N extends AVLTreeNode<K, V, N> = AVLTreeNodeNested<K, V>> extends BSTNode<K, V, N> {
@@ -34,7 +35,6 @@ export class AVLTreeNode<K = any, V = any, N extends AVLTreeNode<K, V, N> = AVLT
34
35
  * 5. Efficient Lookups: Offers O(log n) search time, where 'n' is the number of nodes, due to its balanced nature.
35
36
  * 6. Complex Insertions and Deletions: Due to rebalancing, these operations are more complex than in a regular BST.
36
37
  * 7. Path Length: The path length from the root to any leaf is longer compared to an unbalanced BST, but shorter than a linear chain of nodes.
37
- * 8. Memory Overhead: Stores balance factors (or heights) at each node, leading to slightly higher memory usage compared to a regular BST.
38
38
  */
39
39
  export class AVLTree<K = any, V = any, N extends AVLTreeNode<K, V, N> = AVLTreeNode<K, V, AVLTreeNodeNested<K, V>>, TREE extends AVLTree<K, V, N, TREE> = AVLTree<K, V, N, AVLTreeNested<K, V, N>>>
40
40
  extends BST<K, V, N, TREE>
@@ -42,14 +42,14 @@ export class AVLTree<K = any, V = any, N extends AVLTreeNode<K, V, N> = AVLTreeN
42
42
 
43
43
  /**
44
44
  * The constructor function initializes an AVLTree object with optional elements and options.
45
- * @param [elements] - The `elements` parameter is an optional iterable of `BTNodeExemplar<K, V, N>`
45
+ * @param [elements] - The `elements` parameter is an optional iterable of `BTNExemplar<K, V, N>`
46
46
  * objects. It represents a collection of elements that will be added to the AVL tree during
47
47
  * initialization.
48
48
  * @param [options] - The `options` parameter is an optional object that allows you to customize the
49
49
  * behavior of the AVL tree. It is of type `Partial<AVLTreeOptions>`, which means that you can
50
50
  * provide only a subset of the properties defined in the `AVLTreeOptions` interface.
51
51
  */
52
- constructor(elements?: Iterable<BTNodeExemplar<K, V, N>>, options?: Partial<AVLTreeOptions<K>>) {
52
+ constructor(elements?: Iterable<BTNExemplar<K, V, N>>, options?: Partial<AVLTreeOptions<K>>) {
53
53
  super([], options);
54
54
  if (elements) super.addMany(elements);
55
55
  }
@@ -83,10 +83,10 @@ export class AVLTree<K = any, V = any, N extends AVLTreeNode<K, V, N> = AVLTreeN
83
83
 
84
84
  /**
85
85
  * The function checks if an exemplar is an instance of AVLTreeNode.
86
- * @param exemplar - The `exemplar` parameter is of type `BTNodeExemplar<K, V, N>`.
86
+ * @param exemplar - The `exemplar` parameter is of type `BTNExemplar<K, V, N>`.
87
87
  * @returns a boolean value indicating whether the exemplar is an instance of the AVLTreeNode class.
88
88
  */
89
- override isNode(exemplar: BTNodeExemplar<K, V, N>): exemplar is N {
89
+ override isNode(exemplar: BTNExemplar<K, V, N>): exemplar is N {
90
90
  return exemplar instanceof AVLTreeNode;
91
91
  }
92
92
 
@@ -96,7 +96,7 @@ export class AVLTree<K = any, V = any, N extends AVLTreeNode<K, V, N> = AVLTreeN
96
96
  * data type.
97
97
  * @returns a boolean value indicating whether the potentialKey is of type number or not.
98
98
  */
99
- override isNotNodeInstance(potentialKey: BTNodeKeyOrNode<K, N>): potentialKey is K {
99
+ override isNotNodeInstance(potentialKey: BTNKeyOrNode<K, N>): potentialKey is K {
100
100
  return !(potentialKey instanceof AVLTreeNode)
101
101
  }
102
102
 
@@ -118,7 +118,7 @@ export class AVLTree<K = any, V = any, N extends AVLTreeNode<K, V, N> = AVLTreeN
118
118
  * being added to the binary tree.
119
119
  * @returns The method is returning either the inserted node or undefined.
120
120
  */
121
- override add(keyOrNodeOrEntry: BTNodeExemplar<K, V, N>, value?: V): N | undefined {
121
+ override add(keyOrNodeOrEntry: BTNExemplar<K, V, N>, value?: V): N | undefined {
122
122
  if (keyOrNodeOrEntry === null) return undefined;
123
123
  const inserted = super.add(keyOrNodeOrEntry, value);
124
124
  if (inserted) this._balancePath(inserted);
@@ -143,12 +143,12 @@ export class AVLTree<K = any, V = any, N extends AVLTreeNode<K, V, N> = AVLTreeN
143
143
  * that is deleted from the binary tree. It is an optional parameter and if not provided, it will
144
144
  * default to the `_defaultOneParamCallback` function. The `callback` function should have a single
145
145
  * parameter of type `N
146
- * @returns The method is returning an array of `BiTreeDeleteResult<N>`.
146
+ * @returns The method is returning an array of `BinaryTreeDeleteResult<N>`.
147
147
  */
148
148
  override delete<C extends BTNCallback<N>>(
149
149
  identifier: ReturnType<C>,
150
150
  callback: C = this._defaultOneParamCallback as C
151
- ): BiTreeDeleteResult<N>[] {
151
+ ): BinaryTreeDeleteResult<N>[] {
152
152
  if ((identifier as any) instanceof AVLTreeNode) callback = (node => node) as C;
153
153
  const deletedResults = super.delete(identifier, callback);
154
154
  for (const { needBalanced } of deletedResults) {
@@ -170,7 +170,7 @@ export class AVLTree<K = any, V = any, N extends AVLTreeNode<K, V, N> = AVLTreeN
170
170
  * @returns either the `destNode` object if both `srcNode` and `destNode` are defined, or `undefined`
171
171
  * if either `srcNode` or `destNode` is undefined.
172
172
  */
173
- protected override _swapProperties(srcNode: BSTNodeKeyOrNode<K, N>, destNode: BSTNodeKeyOrNode<K, N>): N | undefined {
173
+ protected override _swapProperties(srcNode: BSTNKeyOrNode<K, N>, destNode: BSTNKeyOrNode<K, N>): N | undefined {
174
174
  srcNode = this.ensureNode(srcNode);
175
175
  destNode = this.ensureNode(destNode);
176
176