avl-tree-typed 2.1.0 → 2.1.2
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.
- package/dist/cjs/index.cjs +3859 -0
- package/dist/cjs/index.cjs.map +1 -0
- package/dist/esm/index.mjs +3852 -0
- package/dist/esm/index.mjs.map +1 -0
- package/dist/types/data-structures/base/index.d.ts +2 -1
- package/dist/types/data-structures/binary-tree/avl-tree-counter.d.ts +182 -2
- package/dist/types/data-structures/binary-tree/avl-tree-multi-map.d.ts +135 -2
- package/dist/types/data-structures/binary-tree/avl-tree.d.ts +291 -2
- package/dist/types/data-structures/binary-tree/binary-indexed-tree.d.ts +174 -1
- package/dist/types/data-structures/binary-tree/binary-tree.d.ts +754 -29
- package/dist/types/data-structures/binary-tree/bst.d.ts +413 -12
- package/dist/types/data-structures/binary-tree/index.d.ts +3 -2
- package/dist/types/data-structures/binary-tree/red-black-tree.d.ts +208 -3
- package/dist/types/data-structures/binary-tree/segment-tree.d.ts +160 -1
- package/dist/types/data-structures/binary-tree/tree-counter.d.ts +190 -2
- package/dist/types/data-structures/binary-tree/tree-multi-map.d.ts +270 -2
- package/dist/types/data-structures/graph/abstract-graph.d.ts +340 -14
- package/dist/types/data-structures/graph/directed-graph.d.ts +207 -1
- package/dist/types/data-structures/graph/index.d.ts +2 -1
- package/dist/types/data-structures/graph/map-graph.d.ts +78 -1
- package/dist/types/data-structures/graph/undirected-graph.d.ts +188 -1
- package/dist/types/data-structures/hash/hash-map.d.ts +345 -19
- package/dist/types/data-structures/hash/index.d.ts +0 -1
- package/dist/types/data-structures/heap/heap.d.ts +503 -5
- package/dist/types/data-structures/heap/index.d.ts +2 -0
- package/dist/types/data-structures/heap/max-heap.d.ts +32 -1
- package/dist/types/data-structures/heap/min-heap.d.ts +33 -1
- package/dist/types/data-structures/index.d.ts +7 -7
- package/dist/types/data-structures/linked-list/doubly-linked-list.d.ts +769 -2
- package/dist/types/data-structures/linked-list/singly-linked-list.d.ts +451 -2
- package/dist/types/data-structures/linked-list/skip-linked-list.d.ts +27 -4
- package/dist/types/data-structures/matrix/index.d.ts +1 -1
- package/dist/types/data-structures/matrix/matrix.d.ts +168 -7
- package/dist/types/data-structures/matrix/navigator.d.ts +54 -13
- package/dist/types/data-structures/priority-queue/max-priority-queue.d.ts +27 -1
- package/dist/types/data-structures/priority-queue/min-priority-queue.d.ts +26 -1
- package/dist/types/data-structures/priority-queue/priority-queue.d.ts +15 -2
- package/dist/types/data-structures/queue/deque.d.ts +431 -4
- package/dist/types/data-structures/queue/queue.d.ts +308 -4
- package/dist/types/data-structures/stack/stack.d.ts +306 -2
- package/dist/types/data-structures/tree/tree.d.ts +62 -1
- package/dist/types/data-structures/trie/trie.d.ts +350 -4
- package/dist/types/index.d.ts +15 -3
- package/dist/{interfaces → types/interfaces}/binary-tree.d.ts +3 -3
- package/dist/types/types/data-structures/base/index.d.ts +1 -0
- package/dist/types/types/data-structures/binary-tree/avl-tree-counter.d.ts +2 -0
- package/dist/types/types/data-structures/binary-tree/avl-tree-multi-map.d.ts +2 -0
- package/dist/types/types/data-structures/binary-tree/avl-tree.d.ts +2 -0
- package/dist/types/types/data-structures/binary-tree/binary-indexed-tree.d.ts +1 -0
- package/dist/types/types/data-structures/binary-tree/binary-tree.d.ts +29 -0
- package/dist/types/types/data-structures/binary-tree/bst.d.ts +12 -0
- package/dist/{data-structures → types/types/data-structures}/binary-tree/index.d.ts +2 -3
- package/dist/types/types/data-structures/binary-tree/red-black-tree.d.ts +3 -0
- package/dist/types/types/data-structures/binary-tree/segment-tree.d.ts +1 -0
- package/dist/types/types/data-structures/binary-tree/tree-counter.d.ts +2 -0
- package/dist/types/types/data-structures/binary-tree/tree-multi-map.d.ts +2 -0
- package/dist/types/types/data-structures/graph/abstract-graph.d.ts +14 -0
- package/dist/types/types/data-structures/graph/directed-graph.d.ts +1 -0
- package/dist/{data-structures → types/types/data-structures}/graph/index.d.ts +1 -2
- package/dist/types/types/data-structures/graph/map-graph.d.ts +1 -0
- package/dist/types/types/data-structures/graph/undirected-graph.d.ts +1 -0
- package/dist/types/types/data-structures/hash/hash-map.d.ts +19 -0
- package/dist/types/types/data-structures/hash/index.d.ts +2 -0
- package/dist/types/types/data-structures/heap/heap.d.ts +5 -0
- package/dist/types/types/data-structures/heap/index.d.ts +1 -0
- package/dist/types/types/data-structures/heap/max-heap.d.ts +1 -0
- package/dist/types/types/data-structures/heap/min-heap.d.ts +1 -0
- package/dist/types/types/data-structures/linked-list/doubly-linked-list.d.ts +2 -0
- package/dist/types/types/data-structures/linked-list/singly-linked-list.d.ts +2 -0
- package/dist/types/types/data-structures/linked-list/skip-linked-list.d.ts +4 -0
- package/dist/types/types/data-structures/matrix/matrix.d.ts +7 -0
- package/dist/types/types/data-structures/matrix/navigator.d.ts +14 -0
- package/dist/types/types/data-structures/priority-queue/max-priority-queue.d.ts +1 -0
- package/dist/types/types/data-structures/priority-queue/min-priority-queue.d.ts +1 -0
- package/dist/types/types/data-structures/priority-queue/priority-queue.d.ts +2 -0
- package/dist/types/types/data-structures/queue/deque.d.ts +4 -0
- package/dist/types/types/data-structures/queue/queue.d.ts +4 -0
- package/dist/types/types/data-structures/stack/stack.d.ts +2 -0
- package/dist/types/types/data-structures/tree/tree.d.ts +1 -0
- package/dist/types/types/data-structures/trie/trie.d.ts +4 -0
- package/dist/types/types/index.d.ts +3 -0
- package/dist/types/types/utils/index.d.ts +2 -0
- package/dist/types/types/utils/utils.d.ts +22 -0
- package/dist/types/utils/index.d.ts +1 -1
- package/dist/types/utils/utils.d.ts +209 -22
- package/dist/umd/avl-tree-typed.js +3852 -0
- package/dist/umd/avl-tree-typed.js.map +1 -0
- package/dist/umd/avl-tree-typed.min.js +13 -0
- package/dist/umd/avl-tree-typed.min.js.map +1 -0
- package/package.json +25 -5
- package/src/data-structures/binary-tree/avl-tree-counter.ts +8 -11
- package/src/data-structures/binary-tree/avl-tree-multi-map.ts +6 -11
- package/src/data-structures/binary-tree/avl-tree.ts +6 -8
- package/src/data-structures/binary-tree/binary-tree.ts +13 -15
- package/src/data-structures/binary-tree/bst.ts +6 -11
- package/src/data-structures/binary-tree/red-black-tree.ts +6 -11
- package/src/data-structures/binary-tree/tree-counter.ts +8 -13
- package/src/data-structures/binary-tree/tree-multi-map.ts +6 -11
- package/src/data-structures/heap/heap.ts +5 -5
- package/src/data-structures/linked-list/singly-linked-list.ts +2 -2
- package/src/interfaces/binary-tree.ts +3 -3
- package/tsconfig.base.json +23 -0
- package/tsconfig.json +8 -34
- package/tsconfig.test.json +8 -0
- package/tsconfig.types.json +15 -0
- package/tsup.config.js +28 -0
- package/tsup.node.config.js +37 -0
- package/dist/common/index.js +0 -28
- package/dist/constants/index.js +0 -8
- package/dist/data-structures/base/index.d.ts +0 -2
- package/dist/data-structures/base/index.js +0 -18
- package/dist/data-structures/base/iterable-element-base.js +0 -243
- package/dist/data-structures/base/iterable-entry-base.js +0 -183
- package/dist/data-structures/base/linear-base.js +0 -415
- package/dist/data-structures/binary-tree/avl-tree-counter.d.ts +0 -182
- package/dist/data-structures/binary-tree/avl-tree-counter.js +0 -374
- package/dist/data-structures/binary-tree/avl-tree-multi-map.d.ts +0 -135
- package/dist/data-structures/binary-tree/avl-tree-multi-map.js +0 -250
- package/dist/data-structures/binary-tree/avl-tree.d.ts +0 -291
- package/dist/data-structures/binary-tree/avl-tree.js +0 -611
- package/dist/data-structures/binary-tree/binary-indexed-tree.d.ts +0 -174
- package/dist/data-structures/binary-tree/binary-indexed-tree.js +0 -294
- package/dist/data-structures/binary-tree/binary-tree.d.ts +0 -754
- package/dist/data-structures/binary-tree/binary-tree.js +0 -1925
- package/dist/data-structures/binary-tree/bst.d.ts +0 -413
- package/dist/data-structures/binary-tree/bst.js +0 -903
- package/dist/data-structures/binary-tree/index.js +0 -26
- package/dist/data-structures/binary-tree/red-black-tree.d.ts +0 -208
- package/dist/data-structures/binary-tree/red-black-tree.js +0 -546
- package/dist/data-structures/binary-tree/segment-tree.d.ts +0 -160
- package/dist/data-structures/binary-tree/segment-tree.js +0 -297
- package/dist/data-structures/binary-tree/tree-counter.d.ts +0 -190
- package/dist/data-structures/binary-tree/tree-counter.js +0 -413
- package/dist/data-structures/binary-tree/tree-multi-map.d.ts +0 -270
- package/dist/data-structures/binary-tree/tree-multi-map.js +0 -384
- package/dist/data-structures/graph/abstract-graph.d.ts +0 -340
- package/dist/data-structures/graph/abstract-graph.js +0 -896
- package/dist/data-structures/graph/directed-graph.d.ts +0 -207
- package/dist/data-structures/graph/directed-graph.js +0 -525
- package/dist/data-structures/graph/index.js +0 -20
- package/dist/data-structures/graph/map-graph.d.ts +0 -78
- package/dist/data-structures/graph/map-graph.js +0 -107
- package/dist/data-structures/graph/undirected-graph.d.ts +0 -188
- package/dist/data-structures/graph/undirected-graph.js +0 -424
- package/dist/data-structures/hash/hash-map.d.ts +0 -345
- package/dist/data-structures/hash/hash-map.js +0 -692
- package/dist/data-structures/hash/index.d.ts +0 -1
- package/dist/data-structures/hash/index.js +0 -17
- package/dist/data-structures/heap/heap.d.ts +0 -503
- package/dist/data-structures/heap/heap.js +0 -901
- package/dist/data-structures/heap/index.d.ts +0 -3
- package/dist/data-structures/heap/index.js +0 -19
- package/dist/data-structures/heap/max-heap.d.ts +0 -32
- package/dist/data-structures/heap/max-heap.js +0 -40
- package/dist/data-structures/heap/min-heap.d.ts +0 -33
- package/dist/data-structures/heap/min-heap.js +0 -31
- package/dist/data-structures/index.js +0 -28
- package/dist/data-structures/linked-list/doubly-linked-list.d.ts +0 -769
- package/dist/data-structures/linked-list/doubly-linked-list.js +0 -1111
- package/dist/data-structures/linked-list/index.js +0 -19
- package/dist/data-structures/linked-list/singly-linked-list.d.ts +0 -451
- package/dist/data-structures/linked-list/singly-linked-list.js +0 -850
- package/dist/data-structures/linked-list/skip-linked-list.d.ts +0 -27
- package/dist/data-structures/linked-list/skip-linked-list.js +0 -144
- package/dist/data-structures/matrix/index.js +0 -18
- package/dist/data-structures/matrix/matrix.d.ts +0 -168
- package/dist/data-structures/matrix/matrix.js +0 -448
- package/dist/data-structures/matrix/navigator.d.ts +0 -55
- package/dist/data-structures/matrix/navigator.js +0 -111
- package/dist/data-structures/priority-queue/index.js +0 -19
- package/dist/data-structures/priority-queue/max-priority-queue.d.ts +0 -27
- package/dist/data-structures/priority-queue/max-priority-queue.js +0 -34
- package/dist/data-structures/priority-queue/min-priority-queue.d.ts +0 -26
- package/dist/data-structures/priority-queue/min-priority-queue.js +0 -24
- package/dist/data-structures/priority-queue/priority-queue.d.ts +0 -15
- package/dist/data-structures/priority-queue/priority-queue.js +0 -20
- package/dist/data-structures/queue/deque.d.ts +0 -431
- package/dist/data-structures/queue/deque.js +0 -879
- package/dist/data-structures/queue/index.js +0 -18
- package/dist/data-structures/queue/queue.d.ts +0 -308
- package/dist/data-structures/queue/queue.js +0 -473
- package/dist/data-structures/stack/index.js +0 -17
- package/dist/data-structures/stack/stack.d.ts +0 -306
- package/dist/data-structures/stack/stack.js +0 -401
- package/dist/data-structures/tree/index.js +0 -17
- package/dist/data-structures/tree/tree.d.ts +0 -62
- package/dist/data-structures/tree/tree.js +0 -107
- package/dist/data-structures/trie/index.js +0 -17
- package/dist/data-structures/trie/trie.d.ts +0 -350
- package/dist/data-structures/trie/trie.js +0 -610
- package/dist/index.d.ts +0 -15
- package/dist/index.js +0 -31
- package/dist/interfaces/binary-tree.js +0 -2
- package/dist/interfaces/doubly-linked-list.js +0 -2
- package/dist/interfaces/graph.js +0 -2
- package/dist/interfaces/heap.js +0 -2
- package/dist/interfaces/index.js +0 -24
- package/dist/interfaces/navigator.js +0 -2
- package/dist/interfaces/priority-queue.js +0 -2
- package/dist/interfaces/segment-tree.js +0 -2
- package/dist/interfaces/singly-linked-list.js +0 -2
- package/dist/types/common.js +0 -2
- package/dist/types/data-structures/base/base.js +0 -2
- package/dist/types/data-structures/base/index.js +0 -17
- package/dist/types/data-structures/binary-tree/avl-tree-counter.js +0 -2
- package/dist/types/data-structures/binary-tree/avl-tree-multi-map.js +0 -2
- package/dist/types/data-structures/binary-tree/avl-tree.js +0 -2
- package/dist/types/data-structures/binary-tree/binary-indexed-tree.js +0 -2
- package/dist/types/data-structures/binary-tree/binary-tree.js +0 -2
- package/dist/types/data-structures/binary-tree/bst.js +0 -2
- package/dist/types/data-structures/binary-tree/index.js +0 -25
- package/dist/types/data-structures/binary-tree/red-black-tree.js +0 -2
- package/dist/types/data-structures/binary-tree/segment-tree.js +0 -2
- package/dist/types/data-structures/binary-tree/tree-counter.js +0 -2
- package/dist/types/data-structures/binary-tree/tree-multi-map.js +0 -2
- package/dist/types/data-structures/graph/abstract-graph.js +0 -2
- package/dist/types/data-structures/graph/directed-graph.js +0 -2
- package/dist/types/data-structures/graph/index.js +0 -19
- package/dist/types/data-structures/graph/map-graph.js +0 -2
- package/dist/types/data-structures/graph/undirected-graph.js +0 -2
- package/dist/types/data-structures/hash/hash-map.js +0 -2
- package/dist/types/data-structures/hash/index.js +0 -17
- package/dist/types/data-structures/heap/heap.js +0 -2
- package/dist/types/data-structures/heap/index.js +0 -17
- package/dist/types/data-structures/heap/max-heap.js +0 -2
- package/dist/types/data-structures/heap/min-heap.js +0 -2
- package/dist/types/data-structures/index.js +0 -28
- package/dist/types/data-structures/linked-list/doubly-linked-list.js +0 -2
- package/dist/types/data-structures/linked-list/index.js +0 -19
- package/dist/types/data-structures/linked-list/singly-linked-list.js +0 -2
- package/dist/types/data-structures/linked-list/skip-linked-list.js +0 -2
- package/dist/types/data-structures/matrix/index.js +0 -18
- package/dist/types/data-structures/matrix/matrix.js +0 -2
- package/dist/types/data-structures/matrix/navigator.js +0 -2
- package/dist/types/data-structures/priority-queue/index.js +0 -19
- package/dist/types/data-structures/priority-queue/max-priority-queue.js +0 -2
- package/dist/types/data-structures/priority-queue/min-priority-queue.js +0 -2
- package/dist/types/data-structures/priority-queue/priority-queue.js +0 -2
- package/dist/types/data-structures/queue/deque.js +0 -2
- package/dist/types/data-structures/queue/index.js +0 -18
- package/dist/types/data-structures/queue/queue.js +0 -2
- package/dist/types/data-structures/stack/index.js +0 -17
- package/dist/types/data-structures/stack/stack.js +0 -2
- package/dist/types/data-structures/tree/index.js +0 -17
- package/dist/types/data-structures/tree/tree.js +0 -2
- package/dist/types/data-structures/trie/index.js +0 -17
- package/dist/types/data-structures/trie/trie.js +0 -2
- package/dist/types/index.js +0 -19
- package/dist/types/utils/index.js +0 -18
- package/dist/types/utils/utils.js +0 -2
- package/dist/types/utils/validate-type.js +0 -2
- package/dist/utils/index.d.ts +0 -2
- package/dist/utils/index.js +0 -18
- package/dist/utils/number.js +0 -23
- package/dist/utils/utils.d.ts +0 -209
- package/dist/utils/utils.js +0 -353
- package/dist/{common → types/common}/index.d.ts +0 -0
- package/dist/{constants → types/constants}/index.d.ts +0 -0
- package/dist/{data-structures → types/data-structures}/base/iterable-element-base.d.ts +0 -0
- package/dist/{data-structures → types/data-structures}/base/iterable-entry-base.d.ts +0 -0
- package/dist/{data-structures → types/data-structures}/base/linear-base.d.ts +0 -0
- package/dist/{interfaces → types/interfaces}/doubly-linked-list.d.ts +0 -0
- package/dist/{interfaces → types/interfaces}/graph.d.ts +0 -0
- package/dist/{interfaces → types/interfaces}/heap.d.ts +0 -0
- package/dist/{interfaces → types/interfaces}/index.d.ts +0 -0
- package/dist/{interfaces → types/interfaces}/navigator.d.ts +0 -0
- package/dist/{interfaces → types/interfaces}/priority-queue.d.ts +0 -0
- package/dist/{interfaces → types/interfaces}/segment-tree.d.ts +0 -0
- package/dist/{interfaces → types/interfaces}/singly-linked-list.d.ts +0 -0
- package/dist/types/{common.d.ts → types/common.d.ts} +0 -0
- package/dist/types/{data-structures → types/data-structures}/base/base.d.ts +0 -0
- package/dist/{data-structures → types/types/data-structures}/index.d.ts +7 -7
- package/dist/{data-structures → types/types/data-structures}/linked-list/index.d.ts +0 -0
- package/dist/{data-structures → types/types/data-structures}/matrix/index.d.ts +1 -1
- /package/dist/{data-structures → types/types/data-structures}/priority-queue/index.d.ts +0 -0
- /package/dist/{data-structures → types/types/data-structures}/queue/index.d.ts +0 -0
- /package/dist/{data-structures → types/types/data-structures}/stack/index.d.ts +0 -0
- /package/dist/{data-structures → types/types/data-structures}/tree/index.d.ts +0 -0
- /package/dist/{data-structures → types/types/data-structures}/trie/index.d.ts +0 -0
- /package/dist/types/{utils → types/utils}/validate-type.d.ts +0 -0
- /package/dist/{utils → types/utils}/number.d.ts +0 -0
|
@@ -1 +1,174 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*/
|
|
4
|
+
export declare class BinaryIndexedTree {
|
|
5
|
+
protected readonly _freq: number;
|
|
6
|
+
protected readonly _max: number;
|
|
7
|
+
/**
|
|
8
|
+
* The constructor initializes the properties of an object, including default frequency, maximum
|
|
9
|
+
* value, a freqMap data structure, the most significant bit, and the count of negative frequencies.
|
|
10
|
+
* @param - - `frequency`: The default frequency value. It is optional and has a default
|
|
11
|
+
* value of 0.
|
|
12
|
+
*/
|
|
13
|
+
constructor({ frequency, max }: {
|
|
14
|
+
frequency?: number;
|
|
15
|
+
max: number;
|
|
16
|
+
});
|
|
17
|
+
protected _freqMap: Record<number, number>;
|
|
18
|
+
/**
|
|
19
|
+
* The function returns the frequency map of numbers.
|
|
20
|
+
* @returns The `_freqMap` property, which is a record with number keys and number values, is being
|
|
21
|
+
* returned.
|
|
22
|
+
*/
|
|
23
|
+
get freqMap(): Record<number, number>;
|
|
24
|
+
protected _msb: number;
|
|
25
|
+
/**
|
|
26
|
+
* The function returns the value of the _msb property.
|
|
27
|
+
* @returns The `_msb` property of the object.
|
|
28
|
+
*/
|
|
29
|
+
get msb(): number;
|
|
30
|
+
protected _negativeCount: number;
|
|
31
|
+
/**
|
|
32
|
+
* The function returns the value of the _negativeCount property.
|
|
33
|
+
* @returns The method is returning the value of the variable `_negativeCount`, which is of type
|
|
34
|
+
* `number`.
|
|
35
|
+
*/
|
|
36
|
+
get negativeCount(): number;
|
|
37
|
+
/**
|
|
38
|
+
* The above function returns the value of the protected variable `_freq`.
|
|
39
|
+
* @returns The frequency value stored in the protected variable `_freq`.
|
|
40
|
+
*/
|
|
41
|
+
get freq(): number;
|
|
42
|
+
/**
|
|
43
|
+
* The above function returns the maximum value.
|
|
44
|
+
* @returns The maximum value stored in the variable `_max`.
|
|
45
|
+
*/
|
|
46
|
+
get max(): number;
|
|
47
|
+
/**
|
|
48
|
+
* The function "readSingle" reads a single number from a specified index.
|
|
49
|
+
* @param {number} index - The `index` parameter is a number that represents the index of an element in a
|
|
50
|
+
* collection or array.
|
|
51
|
+
* @returns a number.
|
|
52
|
+
*/
|
|
53
|
+
readSingle(index: number): number;
|
|
54
|
+
/**
|
|
55
|
+
* The "update" function updates the value at a given index by adding a delta and triggers a callback
|
|
56
|
+
* to notify of the change.
|
|
57
|
+
* @param {number} position - The `index` parameter represents the index of the element that needs to be
|
|
58
|
+
* updated in the data structure.
|
|
59
|
+
* @param {number} change - The "delta" parameter represents the change in value that needs to be
|
|
60
|
+
* applied to the frequency at the specified index.
|
|
61
|
+
*/
|
|
62
|
+
update(position: number, change: number): void;
|
|
63
|
+
/**
|
|
64
|
+
* The function "writeSingle" checks the index and writes a single value with a given frequency.
|
|
65
|
+
* @param {number} index - The `index` parameter is a number that represents the index of an element. It
|
|
66
|
+
* is used to identify the specific element that needs to be written.
|
|
67
|
+
* @param {number} freq - The `freq` parameter represents the frequency value that needs to be
|
|
68
|
+
* written.
|
|
69
|
+
*/
|
|
70
|
+
writeSingle(index: number, freq: number): void;
|
|
71
|
+
/**
|
|
72
|
+
* The read function takes a count parameter, checks if it is an integer, and returns the result of
|
|
73
|
+
* calling the _read function with the count parameter clamped between 0 and the maximum value.
|
|
74
|
+
* @param {number} count - The `count` parameter is a number that represents the number of items to
|
|
75
|
+
* read.
|
|
76
|
+
* @returns a number.
|
|
77
|
+
*/
|
|
78
|
+
read(count: number): number;
|
|
79
|
+
/**
|
|
80
|
+
* The function returns the lower bound of a non-descending sequence that sums up to a given number.
|
|
81
|
+
* @param {number} sum - The `sum` parameter is a number that represents the target sum that we want
|
|
82
|
+
* to find in the sequence.
|
|
83
|
+
* @returns The lowerBound function is returning a number.
|
|
84
|
+
*/
|
|
85
|
+
lowerBound(sum: number): number;
|
|
86
|
+
/**
|
|
87
|
+
* The upperBound function returns the index of the first element in a sequence that is greater than
|
|
88
|
+
* or equal to a given sum.
|
|
89
|
+
* @param {number} sum - The "sum" parameter is a number that represents the target sum that we want
|
|
90
|
+
* to find in the sequence.
|
|
91
|
+
* @returns The upperBound function is returning a number.
|
|
92
|
+
*/
|
|
93
|
+
upperBound(sum: number): number;
|
|
94
|
+
/**
|
|
95
|
+
* The function calculates the prefix sum of an array using a binary indexed tree.
|
|
96
|
+
* @param {number} i - The parameter "i" in the function "getPrefixSum" represents the index of the element in the
|
|
97
|
+
* array for which we want to calculate the prefix sum.
|
|
98
|
+
* @returns The function `getPrefixSum` returns the prefix sum of the elements in the binary indexed tree up to index
|
|
99
|
+
* `i`.
|
|
100
|
+
*/
|
|
101
|
+
getPrefixSum(i: number): number;
|
|
102
|
+
/**
|
|
103
|
+
* The function returns the value of a specific index in a freqMap data structure, or a default value if
|
|
104
|
+
* the index is not found.
|
|
105
|
+
* @param {number} index - The `index` parameter is a number that represents the index of a node in a
|
|
106
|
+
* freqMap data structure.
|
|
107
|
+
* @returns a number.
|
|
108
|
+
*/
|
|
109
|
+
protected _getFrequency(index: number): number;
|
|
110
|
+
/**
|
|
111
|
+
* The function _updateFrequency adds a delta value to the element at the specified index in the freqMap array.
|
|
112
|
+
* @param {number} index - The index parameter is a number that represents the index of the freqMap
|
|
113
|
+
* element that needs to be updated.
|
|
114
|
+
* @param {number} delta - The `delta` parameter represents the change in value that needs to be
|
|
115
|
+
* added to the freqMap at the specified `index`.
|
|
116
|
+
*/
|
|
117
|
+
protected _updateFrequency(index: number, delta: number): void;
|
|
118
|
+
/**
|
|
119
|
+
* The function checks if the given index is valid and within the range.
|
|
120
|
+
* @param {number} index - The parameter "index" is of type number and represents the index value
|
|
121
|
+
* that needs to be checked.
|
|
122
|
+
*/
|
|
123
|
+
protected _checkIndex(index: number): void;
|
|
124
|
+
/**
|
|
125
|
+
* The function calculates the sum of elements in an array up to a given index using a binary indexed
|
|
126
|
+
* freqMap.
|
|
127
|
+
* @param {number} index - The `index` parameter is a number that represents the index of an element in a
|
|
128
|
+
* data structure.
|
|
129
|
+
* @returns a number.
|
|
130
|
+
*/
|
|
131
|
+
protected _readSingle(index: number): number;
|
|
132
|
+
/**
|
|
133
|
+
* The function `_updateNegativeCount` updates a counter based on changes in frequency values.
|
|
134
|
+
* @param {number} freqCur - The current frequency value.
|
|
135
|
+
* @param {number} freqNew - The freqNew parameter represents the new frequency value.
|
|
136
|
+
*/
|
|
137
|
+
protected _updateNegativeCount(freqCur: number, freqNew: number): void;
|
|
138
|
+
/**
|
|
139
|
+
* The `_update` function updates the values in a binary indexed freqMap starting from a given index and
|
|
140
|
+
* propagating the changes to its parent nodes.
|
|
141
|
+
* @param {number} index - The `index` parameter is a number that represents the index of the element in
|
|
142
|
+
* the data structure that needs to be updated.
|
|
143
|
+
* @param {number} delta - The `delta` parameter represents the change in value that needs to be
|
|
144
|
+
* applied to the elements in the data structure.
|
|
145
|
+
*/
|
|
146
|
+
protected _update(index: number, delta: number): void;
|
|
147
|
+
/**
|
|
148
|
+
* The `_writeSingle` function updates the frequency at a specific index and triggers a callback if
|
|
149
|
+
* the frequency has changed.
|
|
150
|
+
* @param {number} index - The `index` parameter is a number that represents the index of the element
|
|
151
|
+
* being modified or accessed.
|
|
152
|
+
* @param {number} freq - The `freq` parameter represents the new frequency value that needs to be
|
|
153
|
+
* written to the specified index `index`.
|
|
154
|
+
*/
|
|
155
|
+
protected _writeSingle(index: number, freq: number): void;
|
|
156
|
+
/**
|
|
157
|
+
* The `_read` function calculates the sum of values in a binary freqMap up to a given count.
|
|
158
|
+
* @param {number} count - The `count` parameter is a number that represents the number of elements
|
|
159
|
+
* to read from the freqMap.
|
|
160
|
+
* @returns the sum of the values obtained from calling the `_getFrequency` method for each index in the
|
|
161
|
+
* range from `count` to 1.
|
|
162
|
+
*/
|
|
163
|
+
protected _read(count: number): number;
|
|
164
|
+
/**
|
|
165
|
+
* The function `_binarySearch` performs a binary search to find the largest number that satisfies a given
|
|
166
|
+
* condition.
|
|
167
|
+
* @param {number} sum - The sum parameter is a number that represents the target sum value.
|
|
168
|
+
* @param before - The `before` parameter is a function that takes two numbers `x` and `y` as
|
|
169
|
+
* arguments and returns a boolean value. It is used to determine if `x` is less than or equal to
|
|
170
|
+
* `y`. The purpose of this function is to compare two numbers and determine their order.
|
|
171
|
+
* @returns the value of the variable "left".
|
|
172
|
+
*/
|
|
173
|
+
protected _binarySearch(sum: number, before: (x: number, y: number) => boolean): number;
|
|
174
|
+
}
|