-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathutil.ts
388 lines (344 loc) · 9.19 KB
/
util.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
export interface CachedFunc<S, T> {
(value: S): T;
readonly cache: Map<S, T>;
}
export function cachedFunc<S, T>(func: (value: S) => T): CachedFunc<S, T> {
function wrapper(value: S): T {
let cached = wrapper.cache.get(value);
if (cached === undefined) {
wrapper.cache.set(value, (cached = func(value)));
}
return cached;
}
wrapper.cache = new Map<S, T>();
return wrapper;
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export const isReadonlyArray: (value: unknown) => value is readonly any[] = Array.isArray;
/**
* This is functionally equivalent to `Array.prototype.filter` but it mutates the given array.
*
* @param array
* @param filter
*/
export function filterMut<T>(array: T[], filter: (arg: T, prev: T | undefined) => boolean): void {
let deleteCount = 0;
for (let i = 0; i < array.length; i++) {
const element = array[i];
if (filter(element, array[i - deleteCount - 1])) {
array[i - deleteCount] = element;
} else {
deleteCount++;
}
}
array.splice(array.length - deleteCount, deleteCount);
}
export function swapRemove<T>(array: T[], index: number): void {
if (index === array.length - 1) {
array.pop();
} else {
array[index] = array.pop()!;
}
}
export function minOf<T>(iter: Iterable<T>, cost: (value: T) => number): T | undefined {
let min: T | undefined = undefined;
let minCost = Infinity;
for (const value of iter) {
const valueCost = cost(value);
if (valueCost < minCost) {
min = value;
minCost = valueCost;
}
}
return min;
}
export function iterToArray<T>(iter: Iterable<T>): readonly T[] {
return Array.isArray(iter) ? iter : [...iter];
}
export function iterToSet<T>(iter: Iterable<T>): ReadonlySet<T> {
return iter instanceof Set ? iter : new Set(iter);
}
export function firstOf<T>(iter: Iterable<T>): T | undefined {
for (const value of iter) {
return value;
}
return undefined;
}
export function withoutSet<T>(s1: Iterable<T>, s2: ReadonlySet<T>): Set<T> {
const s = new Set<T>();
for (const x of s1) {
if (!s2.has(x)) {
s.add(x);
}
}
return s;
}
export function intersectSet<T>(s1: Iterable<T>, s2: ReadonlySet<T>): Set<T> {
const s = new Set<T>();
for (const x of s1) {
if (s2.has(x)) {
s.add(x);
}
}
return s;
}
/**
* Performs a depth first search on the given root element.
*
* @param rootElement
* @param next
*/
// eslint-disable-next-line @typescript-eslint/naming-convention
export function DFS<S>(rootElement: S, next: (element: S) => Iterable<S>): void {
// It's important that this is implemented iteratively.
// A recursive implementation might cause a stack overflow.
const visited = new Set<S>();
interface StackFrame {
element: S;
nextElements?: readonly S[];
nextIndex: number;
}
const stack: StackFrame[] = [
{
element: rootElement,
nextIndex: -1,
},
];
while (stack.length > 0) {
const top = stack[stack.length - 1];
if (top.nextIndex === -1) {
// first time seeing this stack frame
visited.add(top.element);
top.nextElements = iterToArray(next(top.element));
}
const nextElements = top.nextElements;
if (!nextElements) {
throw new Error("This should not happen.");
}
// start with the first element
top.nextIndex++;
if (top.nextIndex >= nextElements.length) {
stack.pop();
continue;
}
// add a new stack frame for the next element
const nextElement = nextElements[top.nextIndex];
if (visited.has(nextElement)) {
// already processed the element
continue;
}
stack.push({
element: nextElement,
nextIndex: -1,
});
}
}
export function* iterateBFS<S>(startElements: Iterable<S>, next: (element: S) => Iterable<S>): Iterable<S> {
const visited = new Set<S>();
let visitNow: S[] = [...startElements];
let visitNext: S[] = [];
while (visitNow.length > 0) {
for (const node of visitNow) {
if (!visited.has(node)) {
visited.add(node);
yield node;
visitNext.push(...next(node));
}
}
// swap arrays
[visitNow, visitNext] = [visitNext, visitNow];
// clear visitNext
visitNext.length = 0;
}
}
/**
* An array that is only allowed to consume items.
*
* This is a write-only view of an array.
*/
export interface ConsumerArray<T> {
push(...items: T[]): void;
}
/**
* Traverses the given graph in any order. All elements will be visited exactly once.
*
* @param root
* @param next
*/
export function traverse<S>(root: S, next: (element: S, queue: ConsumerArray<S>) => void): void {
const visited = new Set<S>();
const toCheck: S[] = [root];
let element;
while (toCheck.length) {
element = toCheck.pop() as S;
if (!visited.has(element)) {
visited.add(element);
next(element, toCheck);
}
}
}
/**
* Traverses the given graph in any order. All elements will be visited exactly once.
*
* @param roots
* @param next
*/
export function traverseMultiRoot<S>(roots: Iterable<S>, next: (element: S, queue: ConsumerArray<S>) => void): void {
const visited = new Set<S>();
const toCheck: S[] = [...roots];
let element;
while (toCheck.length) {
element = toCheck.pop() as S;
if (!visited.has(element)) {
visited.add(element);
next(element, toCheck);
}
}
}
export function assertNever(value: never, message?: string): never {
const error = new Error(message);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(error as any).data = value;
throw error;
}
export function debugAssert(condition: boolean, message?: string): asserts condition {
if (!condition) {
throw new Error("Debug assertion failed." + (message !== undefined ? "Message: " + message : ""));
}
}
export type UnionIterable<T> = Iterable<T> & { __unionIterable?: never };
export type ConcatIterable<T> = Iterable<T> & { __concatIterable?: never };
export function* unionSequences<T>(sequencesSet: UnionIterable<UnionIterable<T>>): UnionIterable<T> {
for (const sequences of sequencesSet) {
yield* sequences;
}
}
export function* flatConcatSequences<T>(
sequencesList: ConcatIterable<UnionIterable<readonly T[]>>
): UnionIterable<T[]> {
for (const combination of iterateCombinations(sequencesList)) {
const wordSet: T[] = [];
for (const item of combination) {
wordSet.push(...item);
}
yield wordSet;
}
}
export function* concatSequences<T>(sequencesList: ConcatIterable<UnionIterable<T>>): UnionIterable<T[]> {
for (const combination of iterateCombinations(sequencesList)) {
yield [...combination];
}
}
export function* repeatSequences<T, R>(
counts: UnionIterable<number>,
sequences: UnionIterable<T>,
concat: (list: ConcatIterable<UnionIterable<T>>) => UnionIterable<R>
): UnionIterable<R> {
sequences = toStableIter(sequences);
for (const count of counts) {
const concatSeq: UnionIterable<T>[] = [];
for (let i = 0; i < count; i++) {
concatSeq.push(sequences);
}
yield* concat(concatSeq);
}
}
class LazyStableIterable<T> implements Iterable<T> {
private readonly _iterator: Iterator<T>;
private readonly _cache: T[] = [];
private _fullyCached = false;
constructor(iter: Iterable<T>) {
this._iterator = iter[Symbol.iterator]();
}
[Symbol.iterator](): Iterator<T> {
if (this._fullyCached) {
return this._cache[Symbol.iterator]();
} else {
return (function* (instance: LazyStableIterable<T>) {
const { _cache: cache, _iterator: iterator } = instance;
let i = 0;
while (!instance._fullyCached) {
if (i < cache.length) {
yield cache[i];
i++;
} else {
const next = iterator.next();
if (next.done) {
instance._fullyCached = true;
} else {
const { value } = next;
cache.push(value);
yield value;
i++;
}
}
}
for (; i < cache.length; i++) {
yield cache[i];
}
})(this);
}
}
}
/**
* Returns an iterable that can be iterated multiple times.
*
* If the given iterable is already stable, the given parameter will be returned.
*
* @param iter
* @returns
*/
function toStableIter<T>(iter: Iterable<T>): Iterable<T> {
if (Array.isArray(iter) || iter instanceof Set || iter instanceof LazyStableIterable) {
return iter as Iterable<T>;
} else {
return new LazyStableIterable<T>(iter);
}
}
/**
* This function only yields one array. You are not allowed to modify the yielded array and you have to make a copy of
* it before this iterator yields the next value.
*
* @param sequences
*/
function* iterateCombinations<T>(sequences: ConcatIterable<Iterable<T>>): Iterable<ConcatIterable<T>> {
const iterables = iterToArray(sequences).map(toStableIter);
const iterators = iterables.map(iter => iter[Symbol.iterator]());
const values: T[] = [];
for (const iter of iterators) {
const result = iter.next();
if (result.done) {
// one of the iterators is empty
return;
}
values.push(result.value);
}
yield values;
if (iterators.length === 0) {
return;
}
for (;;) {
for (let i = iterators.length - 1; i >= 0; i--) {
const result = iterators[i].next();
if (result.done) {
if (i === 0) {
// finished iterating all combinations
return;
} else {
// restart
iterators[i] = iterables[i][Symbol.iterator]();
const restartResult = iterators[i].next();
if (restartResult.done) {
throw new Error();
} else {
values[i] = restartResult.value;
}
}
} else {
values[i] = result.value;
break;
}
}
yield values;
}
}