-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
131 lines (110 loc) · 3.25 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import {AVLTreeOptions, AVLTreeQuery} from './typings/model';
export {AVLTreeOptions, AVLTreeQuery};
/**
* Self-balancing binary search tree using the AVL implementation
*/
export class AVLTree<K, V extends any> {
/**
* AVLTree constructor.
*
* @param {AVLTreeOptions} options Optional. Tree configuration options.
*/
constructor(options?: AVLTreeOptions<K, V>);
/**
* Check all conditions of this AVL Search tree:
* - Internal references
* - Nodes ordering and heights
* - Balance Factors
*/
public validateTree(): void;
/**
* Get number of inserted keys.
*/
public getNumberOfKeys(): number;
/**
* Get tree height.
*/
public getHeight(): number;
/**
* Insert a new element.
*/
public insert(key: K, value: V): void;
/**
* Delete a key or just a value associated to that key.
*
* @param key The target key.
* @param value Optional. If provvided delete only the value associated to that key that matches this paraneter.
*/
public delete(key: K, value?: V): void;
/**
* Search for all data corresponding to a key.
*/
public search(key: K): V[];
/**
* Search for data coming right after a specific key.
*
* @param key
* @returns The data right after the key specified, or [] if no data found.
*/
public searchAfter(key: K): V[];
/**
* Search for data coming right before a specific key.
*
* @param key
* @returns The data right before the key specified, or [] if no data found.
*/
public searchBefore(key: K): V[];
/**
* Search for key coming right after a specific key.
*
* @param key
* @returns The key right after the specified one, or undefined if no keys are found.
*/
public searchKeyAfter(key: K): K;
/**
* Search for key coming right before a specific key.
*
* @param key
* @returns The key right before the specified one, or undefined if no keys are found.
*/
public searchKeyBefore(key: K): K;
/**
* Return the smallest key from the tree
*
* @returns The smallest key, or undefined if the tree is empty
*/
public getMinKey(): K;
/**
* Return the greatest key from the tree
*
* @returns The greatest key, or undefined if the tree is empty
*/
public getMaxKey(): K;
/**
* Get all data for a key between bounds.
* Return it in key order.
*
* @param {AVLTreeQuery} query A query used to search the tree, to retrieve all data in the tree use {}.
* @returns {[]} An array of found elements
*/
public betweenBounds(query: AVLTreeQuery<K>): V[];
/**
* Get all the keys between bounds.
* Return it in key order.
*
* @param {AVLTreeQuery} query A query used to search the tree, to retrieve all the keys in the tree use {}.
* @returns {[]} An array of found keys
*/
public keysBetweenBounds(query: AVLTreeQuery<K>): K[];
/**
* Execute a function on every node of the tree, in key order.
*
* @param {(key: K, data: V[]) => void} action
*/
public executeOnEveryNode(action: (key: K, data: V[]) => void): void;
}
export class TreeError extends Error {
public metadata: { [key: string]: string | number | boolean };
constructor(message: string);
constructor(message: string, metadata: { [key: string]: string | number | boolean });
}