deque-typed 1.48.3 → 1.48.5

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 (38) hide show
  1. package/dist/data-structures/base/iterable-base.d.ts +6 -6
  2. package/dist/data-structures/base/iterable-base.js +3 -3
  3. package/dist/data-structures/binary-tree/avl-tree.d.ts +5 -3
  4. package/dist/data-structures/binary-tree/avl-tree.js +6 -4
  5. package/dist/data-structures/binary-tree/binary-tree.d.ts +18 -15
  6. package/dist/data-structures/binary-tree/binary-tree.js +16 -13
  7. package/dist/data-structures/binary-tree/bst.d.ts +15 -11
  8. package/dist/data-structures/binary-tree/bst.js +17 -13
  9. package/dist/data-structures/binary-tree/rb-tree.d.ts +19 -13
  10. package/dist/data-structures/binary-tree/rb-tree.js +20 -14
  11. package/dist/data-structures/binary-tree/tree-multimap.d.ts +21 -14
  12. package/dist/data-structures/binary-tree/tree-multimap.js +25 -18
  13. package/dist/data-structures/graph/abstract-graph.d.ts +53 -52
  14. package/dist/data-structures/graph/abstract-graph.js +82 -78
  15. package/dist/data-structures/graph/directed-graph.d.ts +70 -52
  16. package/dist/data-structures/graph/directed-graph.js +111 -65
  17. package/dist/data-structures/graph/map-graph.d.ts +5 -5
  18. package/dist/data-structures/graph/map-graph.js +8 -8
  19. package/dist/data-structures/graph/undirected-graph.d.ts +51 -32
  20. package/dist/data-structures/graph/undirected-graph.js +117 -54
  21. package/dist/data-structures/hash/hash-map.d.ts +8 -8
  22. package/dist/data-structures/hash/hash-map.js +2 -2
  23. package/dist/interfaces/binary-tree.d.ts +1 -1
  24. package/dist/types/data-structures/base/base.d.ts +3 -3
  25. package/package.json +2 -2
  26. package/src/data-structures/base/iterable-base.ts +6 -6
  27. package/src/data-structures/binary-tree/avl-tree.ts +8 -5
  28. package/src/data-structures/binary-tree/binary-tree.ts +23 -19
  29. package/src/data-structures/binary-tree/bst.ts +19 -14
  30. package/src/data-structures/binary-tree/rb-tree.ts +20 -14
  31. package/src/data-structures/binary-tree/tree-multimap.ts +27 -19
  32. package/src/data-structures/graph/abstract-graph.ts +87 -82
  33. package/src/data-structures/graph/directed-graph.ts +114 -65
  34. package/src/data-structures/graph/map-graph.ts +8 -8
  35. package/src/data-structures/graph/undirected-graph.ts +124 -56
  36. package/src/data-structures/hash/hash-map.ts +8 -8
  37. package/src/interfaces/binary-tree.ts +1 -1
  38. package/src/types/data-structures/base/base.ts +3 -3
@@ -24,7 +24,7 @@ export class UndirectedVertex<V = any> extends AbstractVertex<V> {
24
24
  }
25
25
 
26
26
  export class UndirectedEdge<E = number> extends AbstractEdge<E> {
27
- vertices: [VertexKey, VertexKey];
27
+ vertexMap: [VertexKey, VertexKey];
28
28
 
29
29
  /**
30
30
  * The constructor function creates an instance of a class with two vertex IDs, an optional weight, and an optional
@@ -38,7 +38,7 @@ export class UndirectedEdge<E = number> extends AbstractEdge<E> {
38
38
  */
39
39
  constructor(v1: VertexKey, v2: VertexKey, weight?: number, value?: E) {
40
40
  super(weight, value);
41
- this.vertices = [v1, v2];
41
+ this.vertexMap = [v1, v2];
42
42
  }
43
43
  }
44
44
 
@@ -51,17 +51,17 @@ export class UndirectedGraph<
51
51
  extends AbstractGraph<V, E, VO, EO>
52
52
  implements IGraph<V, E, VO, EO> {
53
53
  /**
54
- * The constructor initializes a new Map object to store edges.
54
+ * The constructor initializes a new Map object to store edgeMap.
55
55
  */
56
56
  constructor() {
57
57
  super();
58
- this._edges = new Map<VO, EO[]>();
58
+ this._edgeMap = new Map<VO, EO[]>();
59
59
  }
60
60
 
61
- protected _edges: Map<VO, EO[]>;
61
+ protected _edgeMap: Map<VO, EO[]>;
62
62
 
63
- get edges(): Map<VO, EO[]> {
64
- return this._edges;
63
+ get edgeMap(): Map<VO, EO[]> {
64
+ return this._edgeMap;
65
65
  }
66
66
 
67
67
  /**
@@ -78,7 +78,7 @@ export class UndirectedGraph<
78
78
  }
79
79
 
80
80
  /**
81
- * The function creates an undirected edge between two vertices with an optional weight and value.
81
+ * The function creates an undirected edge between two vertexMap with an optional weight and value.
82
82
  * @param {VertexKey} v1 - The parameter `v1` represents the first vertex of the edge.
83
83
  * @param {VertexKey} v2 - The parameter `v2` represents the second vertex of the edge.
84
84
  * @param {number} [weight] - The `weight` parameter is an optional number that represents the weight of the edge. If
@@ -92,15 +92,15 @@ export class UndirectedGraph<
92
92
  }
93
93
 
94
94
  /**
95
- * Time Complexity: O(|E|), where |E| is the number of edges incident to the given vertex.
95
+ * Time Complexity: O(|E|), where |E| is the number of edgeMap incident to the given vertex.
96
96
  * Space Complexity: O(1)
97
97
  */
98
98
 
99
99
  /**
100
- * Time Complexity: O(|E|), where |E| is the number of edges incident to the given vertex.
100
+ * Time Complexity: O(|E|), where |E| is the number of edgeMap incident to the given vertex.
101
101
  * Space Complexity: O(1)
102
102
  *
103
- * The function `getEdge` returns the first edge that connects two vertices, or undefined if no such edge exists.
103
+ * The function `getEdge` returns the first edge that connects two vertexMap, or undefined if no such edge exists.
104
104
  * @param {VO | VertexKey | undefined} v1 - The parameter `v1` represents a vertex or vertex ID. It can be of type `VO` (vertex
105
105
  * object), `undefined`, or `VertexKey` (a string or number representing the ID of a vertex).
106
106
  * @param {VO | VertexKey | undefined} v2 - The parameter `v2` represents a vertex or vertex ID. It can be of type `VO` (vertex
@@ -108,34 +108,34 @@ export class UndirectedGraph<
108
108
  * @returns an edge (EO) or undefined.
109
109
  */
110
110
  getEdge(v1: VO | VertexKey | undefined, v2: VO | VertexKey | undefined): EO | undefined {
111
- let edges: EO[] | undefined = [];
111
+ let edgeMap: EO[] | undefined = [];
112
112
 
113
113
  if (v1 !== undefined && v2 !== undefined) {
114
114
  const vertex1: VO | undefined = this._getVertex(v1);
115
115
  const vertex2: VO | undefined = this._getVertex(v2);
116
116
 
117
117
  if (vertex1 && vertex2) {
118
- edges = this._edges.get(vertex1)?.filter(e => e.vertices.includes(vertex2.key));
118
+ edgeMap = this._edgeMap.get(vertex1)?.filter(e => e.vertexMap.includes(vertex2.key));
119
119
  }
120
120
  }
121
121
 
122
- return edges ? edges[0] || undefined : undefined;
122
+ return edgeMap ? edgeMap[0] || undefined : undefined;
123
123
  }
124
124
 
125
125
  /**
126
- * Time Complexity: O(|E|), where |E| is the number of edges incident to the given vertex.
126
+ * Time Complexity: O(|E|), where |E| is the number of edgeMap incident to the given vertex.
127
127
  * Space Complexity: O(1)
128
128
  */
129
129
 
130
130
  /**
131
- * Time Complexity: O(|E|), where |E| is the number of edges incident to the given vertex.
131
+ * Time Complexity: O(|E|), where |E| is the number of edgeMap incident to the given vertex.
132
132
  * Space Complexity: O(1)
133
133
  *
134
- * The function removes an edge between two vertices in a graph and returns the removed edge.
134
+ * The function removes an edge between two vertexMap in a graph and returns the removed edge.
135
135
  * @param {VO | VertexKey} v1 - The parameter `v1` represents either a vertex object (`VO`) or a vertex ID (`VertexKey`).
136
136
  * @param {VO | VertexKey} v2 - VO | VertexKey - This parameter can be either a vertex object (VO) or a vertex ID
137
137
  * (VertexKey). It represents the second vertex of the edge that needs to be removed.
138
- * @returns the removed edge (EO) if it exists, or undefined if either of the vertices (VO) does not exist.
138
+ * @returns the removed edge (EO) if it exists, or undefined if either of the vertexMap (VO) does not exist.
139
139
  */
140
140
  deleteEdgeBetween(v1: VO | VertexKey, v2: VO | VertexKey): EO | undefined {
141
141
  const vertex1: VO | undefined = this._getVertex(v1);
@@ -145,33 +145,101 @@ export class UndirectedGraph<
145
145
  return undefined;
146
146
  }
147
147
 
148
- const v1Edges = this._edges.get(vertex1);
148
+ const v1Edges = this._edgeMap.get(vertex1);
149
149
  let removed: EO | undefined = undefined;
150
150
  if (v1Edges) {
151
- removed = arrayRemove<EO>(v1Edges, (e: EO) => e.vertices.includes(vertex2.key))[0] || undefined;
151
+ removed = arrayRemove<EO>(v1Edges, (e: EO) => e.vertexMap.includes(vertex2.key))[0] || undefined;
152
152
  }
153
- const v2Edges = this._edges.get(vertex2);
153
+ const v2Edges = this._edgeMap.get(vertex2);
154
154
  if (v2Edges) {
155
- arrayRemove<EO>(v2Edges, (e: EO) => e.vertices.includes(vertex1.key));
155
+ arrayRemove<EO>(v2Edges, (e: EO) => e.vertexMap.includes(vertex1.key));
156
156
  }
157
157
  return removed;
158
158
  }
159
159
 
160
160
  /**
161
- * Time Complexity: O(|E|), where |E| is the number of edges incident to the given vertex.
161
+ * Time Complexity: O(E), where E is the number of edgeMap incident to the given vertex.
162
162
  * Space Complexity: O(1)
163
163
  */
164
164
 
165
+
165
166
  /**
166
- * Time Complexity: O(|E|), where |E| is the number of edges incident to the given vertex.
167
+ * Time Complexity: O(E), where E is the number of edgeMap incident to the given vertex.
167
168
  * Space Complexity: O(1)
168
169
  *
169
- * The deleteEdge function removes an edge between two vertices in a graph.
170
- * @param {EO} edge - The parameter "edge" is of type EO, which represents an edge in a graph.
171
- * @returns The method is returning either the removed edge (of type EO) or undefined if the edge was not found.
170
+ * The function `deleteEdge` deletes an edge between two vertexMap in a graph.
171
+ * @param {EO | VertexKey} edgeOrOneSideVertexKey - The parameter `edgeOrOneSideVertexKey` can be
172
+ * either an edge object or a vertex key.
173
+ * @param {VertexKey} [otherSideVertexKey] - The parameter `otherSideVertexKey` is an optional
174
+ * parameter that represents the key of the vertex on the other side of the edge. It is used when the
175
+ * `edgeOrOneSideVertexKey` parameter is a vertex key, and it specifies the key of the vertex on the
176
+ * other side of the
177
+ * @returns The `deleteEdge` function returns either the deleted edge object (EO) or `undefined`.
178
+ */
179
+ deleteEdge(edgeOrOneSideVertexKey: EO | VertexKey, otherSideVertexKey?: VertexKey): EO | undefined {
180
+ let oneSide: VO | undefined, otherSide: VO | undefined;
181
+ if (this.isVertexKey(edgeOrOneSideVertexKey)) {
182
+ if (this.isVertexKey(otherSideVertexKey)) {
183
+ oneSide = this._getVertex(edgeOrOneSideVertexKey);
184
+ otherSide = this._getVertex(otherSideVertexKey);
185
+ } else {
186
+ return;
187
+ }
188
+ } else {
189
+ oneSide = this._getVertex(edgeOrOneSideVertexKey.vertexMap[0]);
190
+ otherSide = this._getVertex(edgeOrOneSideVertexKey.vertexMap[1]);
191
+ }
192
+
193
+ if (oneSide && otherSide) {
194
+ return this.deleteEdgeBetween(oneSide, otherSide);
195
+
196
+ } else {
197
+ return;
198
+ }
199
+ }
200
+
201
+ /**
202
+ * Time Complexity: O(1) - Constant time for Map operations.
203
+ * Space Complexity: O(1) - Constant space, as it creates only a few variables.
204
+ */
205
+
206
+ /**
207
+ * Time Complexity: O(1) - Constant time for Map operations.
208
+ * Space Complexity: O(1) - Constant space, as it creates only a few variables.
209
+ *
210
+ * The `deleteVertex` function removes a vertex from a graph by its ID or by the vertex object itself.
211
+ * @param {VO | VertexKey} vertexOrKey - The parameter `vertexOrKey` can be either a vertex object (`VO`) or a vertex ID
212
+ * (`VertexKey`).
213
+ * @returns The method is returning a boolean value.
172
214
  */
173
- deleteEdge(edge: EO): EO | undefined {
174
- return this.deleteEdgeBetween(edge.vertices[0], edge.vertices[1]);
215
+ override deleteVertex(vertexOrKey: VO | VertexKey): boolean {
216
+ let vertexKey: VertexKey;
217
+ let vertex: VO | undefined;
218
+ if (this.isVertexKey(vertexOrKey)) {
219
+ vertex = this.getVertex(vertexOrKey);
220
+ vertexKey = vertexOrKey;
221
+ } else {
222
+ vertex = vertexOrKey;
223
+ vertexKey = this._getVertexKey(vertexOrKey)
224
+ }
225
+
226
+ const neighbors = this.getNeighbors(vertexOrKey)
227
+
228
+ if (vertex) {
229
+ neighbors.forEach(neighbor => {
230
+ const neighborEdges = this._edgeMap.get(neighbor);
231
+ if (neighborEdges) {
232
+ const restEdges = neighborEdges.filter(edge => {
233
+ return !edge.vertexMap.includes(vertexKey);
234
+ });
235
+ this._edgeMap.set(neighbor, restEdges);
236
+ }
237
+ })
238
+ this._edgeMap.delete(vertex);
239
+
240
+ }
241
+
242
+ return this._vertexMap.delete(vertexKey);
175
243
  }
176
244
 
177
245
  /**
@@ -183,16 +251,16 @@ export class UndirectedGraph<
183
251
  * Time Complexity: O(1)
184
252
  * Space Complexity: O(1)
185
253
  *
186
- * The function `degreeOf` returns the degree of a vertex in a graph, which is the number of edges connected to that
254
+ * The function `degreeOf` returns the degree of a vertex in a graph, which is the number of edgeMap connected to that
187
255
  * vertex.
188
256
  * @param {VertexKey | VO} vertexOrKey - The parameter `vertexOrKey` can be either a `VertexKey` or a `VO`.
189
257
  * @returns The function `degreeOf` returns the degree of a vertex in a graph. The degree of a vertex is the number of
190
- * edges connected to that vertex.
258
+ * edgeMap connected to that vertex.
191
259
  */
192
260
  degreeOf(vertexOrKey: VertexKey | VO): number {
193
261
  const vertex = this._getVertex(vertexOrKey);
194
262
  if (vertex) {
195
- return this._edges.get(vertex)?.length || 0;
263
+ return this._edgeMap.get(vertex)?.length || 0;
196
264
  } else {
197
265
  return 0;
198
266
  }
@@ -207,36 +275,36 @@ export class UndirectedGraph<
207
275
  * Time Complexity: O(1)
208
276
  * Space Complexity: O(1)
209
277
  *
210
- * The function returns the edges of a given vertex or vertex ID.
278
+ * The function returns the edgeMap of a given vertex or vertex ID.
211
279
  * @param {VertexKey | VO} vertexOrKey - The parameter `vertexOrKey` can be either a `VertexKey` or a `VO`. A `VertexKey` is a
212
280
  * unique identifier for a vertex in a graph, while `VO` represents the type of the vertex.
213
- * @returns an array of edges.
281
+ * @returns an array of edgeMap.
214
282
  */
215
283
  edgesOf(vertexOrKey: VertexKey | VO): EO[] {
216
284
  const vertex = this._getVertex(vertexOrKey);
217
285
  if (vertex) {
218
- return this._edges.get(vertex) || [];
286
+ return this._edgeMap.get(vertex) || [];
219
287
  } else {
220
288
  return [];
221
289
  }
222
290
  }
223
291
 
224
292
  /**
225
- * Time Complexity: O(|V| + |E|), where |V| is the number of vertices and |E| is the number of edges.
293
+ * Time Complexity: O(|V| + |E|), where |V| is the number of vertexMap and |E| is the number of edgeMap.
226
294
  * Space Complexity: O(|E|)
227
295
  */
228
296
 
229
297
  /**
230
- * Time Complexity: O(|V| + |E|), where |V| is the number of vertices and |E| is the number of edges.
298
+ * Time Complexity: O(|V| + |E|), where |V| is the number of vertexMap and |E| is the number of edgeMap.
231
299
  * Space Complexity: O(|E|)
232
300
  *
233
- * The function "edgeSet" returns an array of unique edges from a set of edges.
301
+ * The function "edgeSet" returns an array of unique edgeMap from a set of edgeMap.
234
302
  * @returns The method `edgeSet()` returns an array of type `EO[]`.
235
303
  */
236
304
  edgeSet(): EO[] {
237
305
  const edgeSet: Set<EO> = new Set();
238
- this._edges.forEach(edges => {
239
- edges.forEach(edge => {
306
+ this._edgeMap.forEach(edgeMap => {
307
+ edgeMap.forEach(edge => {
240
308
  edgeSet.add(edge);
241
309
  });
242
310
  });
@@ -244,18 +312,18 @@ export class UndirectedGraph<
244
312
  }
245
313
 
246
314
  /**
247
- * Time Complexity: O(|V| + |E|), where |V| is the number of vertices and |E| is the number of edges.
315
+ * Time Complexity: O(|V| + |E|), where |V| is the number of vertexMap and |E| is the number of edgeMap.
248
316
  * Space Complexity: O(|E|)
249
317
  */
250
318
 
251
319
  /**
252
- * Time Complexity: O(|V| + |E|), where |V| is the number of vertices and |E| is the number of edges.
320
+ * Time Complexity: O(|V| + |E|), where |V| is the number of vertexMap and |E| is the number of edgeMap.
253
321
  * Space Complexity: O(|E|)
254
322
  *
255
- * The function "getNeighbors" returns an array of neighboring vertices for a given vertex or vertex ID.
323
+ * The function "getNeighbors" returns an array of neighboring vertexMap for a given vertex or vertex ID.
256
324
  * @param {VO | VertexKey} vertexOrKey - The parameter `vertexOrKey` can be either a vertex object (`VO`) or a vertex ID
257
325
  * (`VertexKey`).
258
- * @returns an array of vertices (VO[]).
326
+ * @returns an array of vertexMap (VO[]).
259
327
  */
260
328
  getNeighbors(vertexOrKey: VO | VertexKey): VO[] {
261
329
  const neighbors: VO[] = [];
@@ -263,7 +331,7 @@ export class UndirectedGraph<
263
331
  if (vertex) {
264
332
  const neighborEdges = this.edgesOf(vertex);
265
333
  for (const edge of neighborEdges) {
266
- const neighbor = this._getVertex(edge.vertices.filter(e => e !== vertex.key)[0]);
334
+ const neighbor = this._getVertex(edge.vertexMap.filter(e => e !== vertex.key)[0]);
267
335
  if (neighbor) {
268
336
  neighbors.push(neighbor);
269
337
  }
@@ -281,18 +349,18 @@ export class UndirectedGraph<
281
349
  * Time Complexity: O(1)
282
350
  * Space Complexity: O(1)
283
351
  *
284
- * The function "getEndsOfEdge" returns the vertices at the ends of an edge if the edge exists in the graph, otherwise
352
+ * The function "getEndsOfEdge" returns the vertexMap at the ends of an edge if the edge exists in the graph, otherwise
285
353
  * it returns undefined.
286
354
  * @param {EO} edge - The parameter "edge" is of type EO, which represents an edge in a graph.
287
- * @returns The function `getEndsOfEdge` returns an array containing two vertices `[VO, VO]` if the edge exists in the
355
+ * @returns The function `getEndsOfEdge` returns an array containing two vertexMap `[VO, VO]` if the edge exists in the
288
356
  * graph. If the edge does not exist, it returns `undefined`.
289
357
  */
290
358
  getEndsOfEdge(edge: EO): [VO, VO] | undefined {
291
- if (!this.hasEdge(edge.vertices[0], edge.vertices[1])) {
359
+ if (!this.hasEdge(edge.vertexMap[0], edge.vertexMap[1])) {
292
360
  return undefined;
293
361
  }
294
- const v1 = this._getVertex(edge.vertices[0]);
295
- const v2 = this._getVertex(edge.vertices[1]);
362
+ const v1 = this._getVertex(edge.vertexMap[0]);
363
+ const v2 = this._getVertex(edge.vertexMap[1]);
296
364
  if (v1 && v2) {
297
365
  return [v1, v2];
298
366
  } else {
@@ -309,20 +377,20 @@ export class UndirectedGraph<
309
377
  * Time Complexity: O(1)
310
378
  * Space Complexity: O(1)
311
379
  *
312
- * The function adds an edge to the graph by updating the adjacency list with the vertices of the edge.
380
+ * The function adds an edge to the graph by updating the adjacency list with the vertexMap of the edge.
313
381
  * @param {EO} edge - The parameter "edge" is of type EO, which represents an edge in a graph.
314
382
  * @returns a boolean value.
315
383
  */
316
384
  protected _addEdgeOnly(edge: EO): boolean {
317
- for (const end of edge.vertices) {
385
+ for (const end of edge.vertexMap) {
318
386
  const endVertex = this._getVertex(end);
319
387
  if (endVertex === undefined) return false;
320
388
  if (endVertex) {
321
- const edges = this._edges.get(endVertex);
322
- if (edges) {
323
- edges.push(edge);
389
+ const edgeMap = this._edgeMap.get(endVertex);
390
+ if (edgeMap) {
391
+ edgeMap.push(edge);
324
392
  } else {
325
- this._edges.set(endVertex, [edge]);
393
+ this._edgeMap.set(endVertex, [edge]);
326
394
  }
327
395
  }
328
396
  }
@@ -7,10 +7,10 @@
7
7
  */
8
8
 
9
9
  import { isWeakKey, rangeCheck } from '../../utils';
10
- import { HashMapLinkedNode, HashMapOptions, HashMapStoreItem, PairCallback } from '../../types';
11
- import { IterablePairBase } from "../base";
10
+ import { EntryCallback, HashMapLinkedNode, HashMapOptions, HashMapStoreItem } from '../../types';
11
+ import { IterableEntryBase } from "../base";
12
12
 
13
- export class HashMap<K = any, V = any> extends IterablePairBase<K, V> {
13
+ export class HashMap<K = any, V = any> extends IterableEntryBase<K, V> {
14
14
  protected _store: { [key: string]: HashMapStoreItem<K, V> } = {};
15
15
  protected _objMap: Map<object, V> = new Map();
16
16
 
@@ -165,7 +165,7 @@ export class HashMap<K = any, V = any> extends IterablePairBase<K, V> {
165
165
  * @returns The `map` method is returning a new `HashMap` object with the transformed values based on
166
166
  * the provided callback function.
167
167
  */
168
- map<U>(callbackfn: PairCallback<K, V, U>, thisArg?: any): HashMap<K, U> {
168
+ map<U>(callbackfn: EntryCallback<K, V, U>, thisArg?: any): HashMap<K, U> {
169
169
  const resultMap = new HashMap<K, U>();
170
170
  let index = 0;
171
171
  for (const [key, value] of this) {
@@ -195,7 +195,7 @@ export class HashMap<K = any, V = any> extends IterablePairBase<K, V> {
195
195
  * @returns The `filter` method is returning a new `HashMap` object that contains the key-value pairs
196
196
  * from the original `HashMap` that pass the provided `predicate` function.
197
197
  */
198
- filter(predicate: PairCallback<K, V, boolean>, thisArg?: any): HashMap<K, V> {
198
+ filter(predicate: EntryCallback<K, V, boolean>, thisArg?: any): HashMap<K, V> {
199
199
  const filteredMap = new HashMap<K, V>();
200
200
  let index = 0;
201
201
  for (const [key, value] of this) {
@@ -248,7 +248,7 @@ export class HashMap<K = any, V = any> extends IterablePairBase<K, V> {
248
248
  }
249
249
  }
250
250
 
251
- export class LinkedHashMap<K = any, V = any> extends IterablePairBase<K, V> {
251
+ export class LinkedHashMap<K = any, V = any> extends IterableEntryBase<K, V> {
252
252
 
253
253
  protected _noObjMap: Record<string, HashMapLinkedNode<K, V | undefined>> = {};
254
254
  protected _objMap = new WeakMap<object, HashMapLinkedNode<K, V | undefined>>();
@@ -567,7 +567,7 @@ export class LinkedHashMap<K = any, V = any> extends IterablePairBase<K, V> {
567
567
  * @returns a new `LinkedHashMap` object that contains the key-value pairs from the original
568
568
  * `LinkedHashMap` object that satisfy the given predicate function.
569
569
  */
570
- filter(predicate: PairCallback<K, V, boolean>, thisArg?: any): LinkedHashMap<K, V> {
570
+ filter(predicate: EntryCallback<K, V, boolean>, thisArg?: any): LinkedHashMap<K, V> {
571
571
  const filteredMap = new LinkedHashMap<K, V>();
572
572
  let index = 0;
573
573
  for (const [key, value] of this) {
@@ -601,7 +601,7 @@ export class LinkedHashMap<K = any, V = any> extends IterablePairBase<K, V> {
601
601
  * @returns a new `LinkedHashMap` object with the values mapped according to the provided callback
602
602
  * function.
603
603
  */
604
- map<NV>(callback: PairCallback<K, V, NV>, thisArg?: any): LinkedHashMap<K, NV> {
604
+ map<NV>(callback: EntryCallback<K, V, NV>, thisArg?: any): LinkedHashMap<K, NV> {
605
605
  const mappedMap = new LinkedHashMap<K, NV>();
606
606
  let index = 0;
607
607
  for (const [key, value] of this) {
@@ -13,7 +13,7 @@ export interface IBinaryTree<K = number, V = any, N extends BinaryTreeNode<K, V,
13
13
 
14
14
  createTree(options?: Partial<BinaryTreeOptions<K>>): TREE;
15
15
 
16
- add(keyOrNodeOrEntry: BTNodeExemplar<K, V, N>, count?: number): N | null | undefined;
16
+ add(keyOrNodeOrEntry: BTNodeExemplar<K, V, N>, value?: V, count?: number): N | null | undefined;
17
17
 
18
18
  addMany(nodes: Iterable<BTNodeExemplar<K, V, N>>): (N | null | undefined)[];
19
19
 
@@ -1,6 +1,6 @@
1
- import { IterableElementBase, IterablePairBase } from "../../../data-structures";
1
+ import { IterableElementBase, IterableEntryBase } from "../../../data-structures";
2
2
 
3
- export type PairCallback<K, V, R> = (value: V, key: K, index: number, container: IterablePairBase<K, V>) => R;
3
+ export type EntryCallback<K, V, R> = (value: V, key: K, index: number, container: IterableEntryBase<K, V>) => R;
4
4
  export type ElementCallback<V, R> = (element: V, index: number, container: IterableElementBase<V>) => R;
5
- export type ReducePairCallback<K, V, R> = (accumulator: R, value: V, key: K, index: number, container: IterablePairBase<K, V>) => R;
5
+ export type ReduceEntryCallback<K, V, R> = (accumulator: R, value: V, key: K, index: number, container: IterableEntryBase<K, V>) => R;
6
6
  export type ReduceElementCallback<V, R> = (accumulator: R, element: V, index: number, container: IterableElementBase<V>) => R;