undirected-graph-typed 2.5.2 → 2.5.3
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 +208 -14
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs-legacy/index.cjs +208 -14
- package/dist/cjs-legacy/index.cjs.map +1 -1
- package/dist/esm/index.mjs +208 -14
- package/dist/esm/index.mjs.map +1 -1
- package/dist/esm-legacy/index.mjs +208 -14
- package/dist/esm-legacy/index.mjs.map +1 -1
- package/dist/types/data-structures/binary-tree/avl-tree.d.ts +50 -2
- package/dist/types/data-structures/binary-tree/binary-indexed-tree.d.ts +56 -0
- package/dist/types/data-structures/binary-tree/binary-tree.d.ts +116 -15
- package/dist/types/data-structures/binary-tree/bst.d.ts +99 -3
- package/dist/types/data-structures/binary-tree/red-black-tree.d.ts +79 -8
- package/dist/types/data-structures/binary-tree/segment-tree.d.ts +24 -0
- package/dist/types/data-structures/binary-tree/tree-map.d.ts +520 -1
- package/dist/types/data-structures/binary-tree/tree-multi-map.d.ts +489 -1
- package/dist/types/data-structures/binary-tree/tree-multi-set.d.ts +393 -1
- package/dist/types/data-structures/binary-tree/tree-set.d.ts +500 -1
- package/dist/types/data-structures/graph/directed-graph.d.ts +40 -0
- package/dist/types/data-structures/graph/undirected-graph.d.ts +36 -0
- package/dist/types/data-structures/hash/hash-map.d.ts +51 -6
- package/dist/types/data-structures/heap/heap.d.ts +98 -12
- package/dist/types/data-structures/linked-list/doubly-linked-list.d.ts +75 -0
- package/dist/types/data-structures/linked-list/singly-linked-list.d.ts +61 -1
- package/dist/types/data-structures/linked-list/skip-linked-list.d.ts +72 -0
- package/dist/types/data-structures/matrix/matrix.d.ts +32 -0
- package/dist/types/data-structures/queue/deque.d.ts +82 -0
- package/dist/types/data-structures/queue/queue.d.ts +61 -0
- package/dist/types/data-structures/stack/stack.d.ts +42 -2
- package/dist/types/data-structures/trie/trie.d.ts +48 -0
- package/dist/types/interfaces/binary-tree.d.ts +2 -3
- package/dist/umd/undirected-graph-typed.js +208 -14
- package/dist/umd/undirected-graph-typed.js.map +1 -1
- package/dist/umd/undirected-graph-typed.min.js +1 -1
- package/dist/umd/undirected-graph-typed.min.js.map +1 -1
- package/package.json +2 -2
- package/src/data-structures/binary-tree/avl-tree.ts +52 -5
- package/src/data-structures/binary-tree/binary-indexed-tree.ts +56 -0
- package/src/data-structures/binary-tree/binary-tree.ts +167 -81
- package/src/data-structures/binary-tree/bst.ts +101 -7
- package/src/data-structures/binary-tree/red-black-tree.ts +82 -15
- package/src/data-structures/binary-tree/segment-tree.ts +24 -0
- package/src/data-structures/binary-tree/tree-map.ts +540 -3
- package/src/data-structures/binary-tree/tree-multi-map.ts +490 -2
- package/src/data-structures/binary-tree/tree-multi-set.ts +393 -1
- package/src/data-structures/binary-tree/tree-set.ts +520 -3
- package/src/data-structures/graph/directed-graph.ts +41 -1
- package/src/data-structures/graph/undirected-graph.ts +37 -1
- package/src/data-structures/hash/hash-map.ts +67 -12
- package/src/data-structures/heap/heap.ts +107 -19
- package/src/data-structures/linked-list/doubly-linked-list.ts +88 -0
- package/src/data-structures/linked-list/singly-linked-list.ts +61 -1
- package/src/data-structures/linked-list/skip-linked-list.ts +72 -0
- package/src/data-structures/matrix/matrix.ts +32 -0
- package/src/data-structures/queue/deque.ts +85 -0
- package/src/data-structures/queue/queue.ts +73 -0
- package/src/data-structures/stack/stack.ts +45 -5
- package/src/data-structures/trie/trie.ts +48 -0
- package/src/interfaces/binary-tree.ts +1 -9
|
@@ -745,6 +745,10 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
745
745
|
|
|
746
746
|
|
|
747
747
|
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
|
|
748
752
|
|
|
749
753
|
|
|
750
754
|
|
|
@@ -799,7 +803,7 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
799
803
|
}
|
|
800
804
|
/**
|
|
801
805
|
* Insert an element.
|
|
802
|
-
* @remarks Time O(
|
|
806
|
+
* @remarks Time O(log N) amortized, Space O(1)
|
|
803
807
|
* @param element - Element to insert.
|
|
804
808
|
* @returns True.
|
|
805
809
|
|
|
@@ -832,6 +836,10 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
832
836
|
|
|
833
837
|
|
|
834
838
|
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
|
|
835
843
|
|
|
836
844
|
|
|
837
845
|
|
|
@@ -889,6 +897,10 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
889
897
|
|
|
890
898
|
|
|
891
899
|
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
|
|
903
|
+
|
|
892
904
|
|
|
893
905
|
|
|
894
906
|
|
|
@@ -949,10 +961,41 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
949
961
|
|
|
950
962
|
|
|
951
963
|
|
|
964
|
+
|
|
965
|
+
|
|
966
|
+
|
|
952
967
|
|
|
953
968
|
|
|
954
969
|
|
|
955
970
|
|
|
971
|
+
* @example
|
|
972
|
+
* // Heap with custom comparator (MaxHeap behavior)
|
|
973
|
+
* interface Task {
|
|
974
|
+
* id: number;
|
|
975
|
+
* priority: number;
|
|
976
|
+
* name: string;
|
|
977
|
+
* }
|
|
978
|
+
*
|
|
979
|
+
* // Custom comparator for max heap behavior (higher priority first)
|
|
980
|
+
* const tasks: Task[] = [
|
|
981
|
+
* { id: 1, priority: 5, name: 'Email' },
|
|
982
|
+
* { id: 2, priority: 3, name: 'Chat' },
|
|
983
|
+
* { id: 3, priority: 8, name: 'Alert' }
|
|
984
|
+
* ];
|
|
985
|
+
*
|
|
986
|
+
* const maxHeap = new Heap(tasks, {
|
|
987
|
+
* comparator: (a: Task, b: Task) => b.priority - a.priority
|
|
988
|
+
* });
|
|
989
|
+
*
|
|
990
|
+
* console.log(maxHeap.size); // 3;
|
|
991
|
+
*
|
|
992
|
+
* // Peek returns highest priority task
|
|
993
|
+
* const topTask = maxHeap.peek();
|
|
994
|
+
* console.log(topTask?.priority); // 8;
|
|
995
|
+
* console.log(topTask?.name); // 'Alert';
|
|
996
|
+
*/
|
|
997
|
+
/**
|
|
998
|
+
* @deprecated Use `pop` instead. Will be removed in a future major version.
|
|
956
999
|
* @example
|
|
957
1000
|
* // Heap with custom comparator (MaxHeap behavior)
|
|
958
1001
|
* interface Task {
|
|
@@ -980,6 +1023,14 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
980
1023
|
* console.log(topTask?.name); // 'Alert';
|
|
981
1024
|
*/
|
|
982
1025
|
poll() {
|
|
1026
|
+
return this.pop();
|
|
1027
|
+
}
|
|
1028
|
+
/**
|
|
1029
|
+
* Remove and return the top element (min or max depending on comparator).
|
|
1030
|
+
* @remarks Time O(log N) amortized, Space O(1)
|
|
1031
|
+
* @returns The removed top element, or undefined if empty.
|
|
1032
|
+
*/
|
|
1033
|
+
pop() {
|
|
983
1034
|
if (this.elements.length === 0) return;
|
|
984
1035
|
const value = this.elements[0];
|
|
985
1036
|
const last = this.elements.pop();
|
|
@@ -1023,6 +1074,10 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
1023
1074
|
|
|
1024
1075
|
|
|
1025
1076
|
|
|
1077
|
+
|
|
1078
|
+
|
|
1079
|
+
|
|
1080
|
+
|
|
1026
1081
|
|
|
1027
1082
|
|
|
1028
1083
|
|
|
@@ -1123,6 +1178,10 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
1123
1178
|
|
|
1124
1179
|
|
|
1125
1180
|
|
|
1181
|
+
|
|
1182
|
+
|
|
1183
|
+
|
|
1184
|
+
|
|
1126
1185
|
|
|
1127
1186
|
|
|
1128
1187
|
|
|
@@ -1170,6 +1229,10 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
1170
1229
|
|
|
1171
1230
|
|
|
1172
1231
|
|
|
1232
|
+
|
|
1233
|
+
|
|
1234
|
+
|
|
1235
|
+
|
|
1173
1236
|
|
|
1174
1237
|
|
|
1175
1238
|
|
|
@@ -1184,16 +1247,6 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
1184
1247
|
clear() {
|
|
1185
1248
|
this._elements = [];
|
|
1186
1249
|
}
|
|
1187
|
-
/**
|
|
1188
|
-
* Replace the backing array and rebuild the heap.
|
|
1189
|
-
* @remarks Time O(N), Space O(N)
|
|
1190
|
-
* @param elements - Iterable used to refill the heap.
|
|
1191
|
-
* @returns Array of per-node results from fixing steps.
|
|
1192
|
-
*/
|
|
1193
|
-
refill(elements) {
|
|
1194
|
-
this._elements = Array.from(elements);
|
|
1195
|
-
return this.fix();
|
|
1196
|
-
}
|
|
1197
1250
|
/**
|
|
1198
1251
|
* Check if an equal element exists in the heap.
|
|
1199
1252
|
* @remarks Time O(N), Space O(1)
|
|
@@ -1220,6 +1273,10 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
1220
1273
|
|
|
1221
1274
|
|
|
1222
1275
|
|
|
1276
|
+
|
|
1277
|
+
|
|
1278
|
+
|
|
1279
|
+
|
|
1223
1280
|
|
|
1224
1281
|
|
|
1225
1282
|
|
|
@@ -1267,6 +1324,10 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
1267
1324
|
|
|
1268
1325
|
|
|
1269
1326
|
|
|
1327
|
+
|
|
1328
|
+
|
|
1329
|
+
|
|
1330
|
+
|
|
1270
1331
|
|
|
1271
1332
|
|
|
1272
1333
|
|
|
@@ -1288,7 +1349,7 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
1288
1349
|
}
|
|
1289
1350
|
if (index < 0) return false;
|
|
1290
1351
|
if (index === 0) {
|
|
1291
|
-
this.
|
|
1352
|
+
this.pop();
|
|
1292
1353
|
} else if (index === this.elements.length - 1) {
|
|
1293
1354
|
this.elements.pop();
|
|
1294
1355
|
} else {
|
|
@@ -1298,13 +1359,19 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
1298
1359
|
}
|
|
1299
1360
|
return true;
|
|
1300
1361
|
}
|
|
1362
|
+
/**
|
|
1363
|
+
* @deprecated Use `deleteWhere` instead. Will be removed in a future major version.
|
|
1364
|
+
*/
|
|
1365
|
+
deleteBy(predicate) {
|
|
1366
|
+
return this.deleteWhere(predicate);
|
|
1367
|
+
}
|
|
1301
1368
|
/**
|
|
1302
1369
|
* Delete the first element that matches a predicate.
|
|
1303
1370
|
* @remarks Time O(N), Space O(1)
|
|
1304
1371
|
* @param predicate - Function (element, index, heap) → boolean.
|
|
1305
1372
|
* @returns True if an element was removed.
|
|
1306
1373
|
*/
|
|
1307
|
-
|
|
1374
|
+
deleteWhere(predicate) {
|
|
1308
1375
|
let idx = -1;
|
|
1309
1376
|
for (let i = 0; i < this.elements.length; i++) {
|
|
1310
1377
|
if (predicate(this.elements[i], i, this)) {
|
|
@@ -1314,7 +1381,7 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
1314
1381
|
}
|
|
1315
1382
|
if (idx < 0) return false;
|
|
1316
1383
|
if (idx === 0) {
|
|
1317
|
-
this.
|
|
1384
|
+
this.pop();
|
|
1318
1385
|
} else if (idx === this.elements.length - 1) {
|
|
1319
1386
|
this.elements.pop();
|
|
1320
1387
|
} else {
|
|
@@ -1360,6 +1427,10 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
1360
1427
|
|
|
1361
1428
|
|
|
1362
1429
|
|
|
1430
|
+
|
|
1431
|
+
|
|
1432
|
+
|
|
1433
|
+
|
|
1363
1434
|
|
|
1364
1435
|
|
|
1365
1436
|
|
|
@@ -1440,6 +1511,10 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
1440
1511
|
|
|
1441
1512
|
|
|
1442
1513
|
|
|
1514
|
+
|
|
1515
|
+
|
|
1516
|
+
|
|
1517
|
+
|
|
1443
1518
|
|
|
1444
1519
|
|
|
1445
1520
|
|
|
@@ -1493,6 +1568,10 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
1493
1568
|
|
|
1494
1569
|
|
|
1495
1570
|
|
|
1571
|
+
|
|
1572
|
+
|
|
1573
|
+
|
|
1574
|
+
|
|
1496
1575
|
|
|
1497
1576
|
|
|
1498
1577
|
|
|
@@ -1545,6 +1624,10 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
1545
1624
|
|
|
1546
1625
|
|
|
1547
1626
|
|
|
1627
|
+
|
|
1628
|
+
|
|
1629
|
+
|
|
1630
|
+
|
|
1548
1631
|
|
|
1549
1632
|
|
|
1550
1633
|
|
|
@@ -1604,6 +1687,10 @@ var _Heap = class _Heap extends IterableElementBase {
|
|
|
1604
1687
|
|
|
1605
1688
|
|
|
1606
1689
|
|
|
1690
|
+
|
|
1691
|
+
|
|
1692
|
+
|
|
1693
|
+
|
|
1607
1694
|
|
|
1608
1695
|
|
|
1609
1696
|
|
|
@@ -1807,6 +1894,10 @@ var _Queue = class _Queue extends LinearBase {
|
|
|
1807
1894
|
|
|
1808
1895
|
|
|
1809
1896
|
|
|
1897
|
+
|
|
1898
|
+
|
|
1899
|
+
|
|
1900
|
+
|
|
1810
1901
|
|
|
1811
1902
|
|
|
1812
1903
|
|
|
@@ -1857,6 +1948,10 @@ var _Queue = class _Queue extends LinearBase {
|
|
|
1857
1948
|
|
|
1858
1949
|
|
|
1859
1950
|
|
|
1951
|
+
|
|
1952
|
+
|
|
1953
|
+
|
|
1954
|
+
|
|
1860
1955
|
|
|
1861
1956
|
|
|
1862
1957
|
|
|
@@ -1871,6 +1966,14 @@ var _Queue = class _Queue extends LinearBase {
|
|
|
1871
1966
|
get first() {
|
|
1872
1967
|
return this.length > 0 ? this.elements[this._offset] : void 0;
|
|
1873
1968
|
}
|
|
1969
|
+
/**
|
|
1970
|
+
* Peek at the front element without removing it (alias for `first`).
|
|
1971
|
+
* @remarks Time O(1), Space O(1)
|
|
1972
|
+
* @returns Front element or undefined.
|
|
1973
|
+
*/
|
|
1974
|
+
peek() {
|
|
1975
|
+
return this.first;
|
|
1976
|
+
}
|
|
1874
1977
|
/**
|
|
1875
1978
|
* Get the last element (back) without removing it.
|
|
1876
1979
|
* @remarks Time O(1), Space O(1)
|
|
@@ -1923,6 +2026,10 @@ var _Queue = class _Queue extends LinearBase {
|
|
|
1923
2026
|
|
|
1924
2027
|
|
|
1925
2028
|
|
|
2029
|
+
|
|
2030
|
+
|
|
2031
|
+
|
|
2032
|
+
|
|
1926
2033
|
|
|
1927
2034
|
|
|
1928
2035
|
|
|
@@ -1985,6 +2092,10 @@ var _Queue = class _Queue extends LinearBase {
|
|
|
1985
2092
|
|
|
1986
2093
|
|
|
1987
2094
|
|
|
2095
|
+
|
|
2096
|
+
|
|
2097
|
+
|
|
2098
|
+
|
|
1988
2099
|
|
|
1989
2100
|
|
|
1990
2101
|
|
|
@@ -2054,6 +2165,10 @@ var _Queue = class _Queue extends LinearBase {
|
|
|
2054
2165
|
|
|
2055
2166
|
|
|
2056
2167
|
|
|
2168
|
+
|
|
2169
|
+
|
|
2170
|
+
|
|
2171
|
+
|
|
2057
2172
|
|
|
2058
2173
|
|
|
2059
2174
|
|
|
@@ -2113,6 +2228,10 @@ var _Queue = class _Queue extends LinearBase {
|
|
|
2113
2228
|
|
|
2114
2229
|
|
|
2115
2230
|
|
|
2231
|
+
|
|
2232
|
+
|
|
2233
|
+
|
|
2234
|
+
|
|
2116
2235
|
|
|
2117
2236
|
|
|
2118
2237
|
|
|
@@ -2165,6 +2284,10 @@ var _Queue = class _Queue extends LinearBase {
|
|
|
2165
2284
|
|
|
2166
2285
|
|
|
2167
2286
|
|
|
2287
|
+
|
|
2288
|
+
|
|
2289
|
+
|
|
2290
|
+
|
|
2168
2291
|
|
|
2169
2292
|
|
|
2170
2293
|
|
|
@@ -2216,6 +2339,21 @@ var _Queue = class _Queue extends LinearBase {
|
|
|
2216
2339
|
this._elements[this._offset + index] = newElement;
|
|
2217
2340
|
return true;
|
|
2218
2341
|
}
|
|
2342
|
+
/**
|
|
2343
|
+
* Delete the first element that satisfies a predicate.
|
|
2344
|
+
* @remarks Time O(N), Space O(N)
|
|
2345
|
+
* @param predicate - Function (value, index, queue) → boolean to decide deletion.
|
|
2346
|
+
* @returns True if a match was removed.
|
|
2347
|
+
*/
|
|
2348
|
+
deleteWhere(predicate) {
|
|
2349
|
+
for (let i = 0; i < this.length; i++) {
|
|
2350
|
+
if (predicate(this._elements[this._offset + i], i, this)) {
|
|
2351
|
+
this.deleteAt(i);
|
|
2352
|
+
return true;
|
|
2353
|
+
}
|
|
2354
|
+
}
|
|
2355
|
+
return false;
|
|
2356
|
+
}
|
|
2219
2357
|
/**
|
|
2220
2358
|
* Reverse the queue in-place by compacting then reversing.
|
|
2221
2359
|
* @remarks Time O(N), Space O(N)
|
|
@@ -2258,6 +2396,10 @@ var _Queue = class _Queue extends LinearBase {
|
|
|
2258
2396
|
|
|
2259
2397
|
|
|
2260
2398
|
|
|
2399
|
+
|
|
2400
|
+
|
|
2401
|
+
|
|
2402
|
+
|
|
2261
2403
|
|
|
2262
2404
|
|
|
2263
2405
|
|
|
@@ -2304,6 +2446,10 @@ var _Queue = class _Queue extends LinearBase {
|
|
|
2304
2446
|
|
|
2305
2447
|
|
|
2306
2448
|
|
|
2449
|
+
|
|
2450
|
+
|
|
2451
|
+
|
|
2452
|
+
|
|
2307
2453
|
|
|
2308
2454
|
|
|
2309
2455
|
|
|
@@ -2373,6 +2519,10 @@ var _Queue = class _Queue extends LinearBase {
|
|
|
2373
2519
|
|
|
2374
2520
|
|
|
2375
2521
|
|
|
2522
|
+
|
|
2523
|
+
|
|
2524
|
+
|
|
2525
|
+
|
|
2376
2526
|
|
|
2377
2527
|
|
|
2378
2528
|
|
|
@@ -2426,6 +2576,10 @@ var _Queue = class _Queue extends LinearBase {
|
|
|
2426
2576
|
|
|
2427
2577
|
|
|
2428
2578
|
|
|
2579
|
+
|
|
2580
|
+
|
|
2581
|
+
|
|
2582
|
+
|
|
2429
2583
|
|
|
2430
2584
|
|
|
2431
2585
|
|
|
@@ -2483,6 +2637,10 @@ var _Queue = class _Queue extends LinearBase {
|
|
|
2483
2637
|
|
|
2484
2638
|
|
|
2485
2639
|
|
|
2640
|
+
|
|
2641
|
+
|
|
2642
|
+
|
|
2643
|
+
|
|
2486
2644
|
|
|
2487
2645
|
|
|
2488
2646
|
|
|
@@ -3614,6 +3772,10 @@ var _UndirectedGraph = class _UndirectedGraph extends AbstractGraph {
|
|
|
3614
3772
|
|
|
3615
3773
|
|
|
3616
3774
|
|
|
3775
|
+
|
|
3776
|
+
|
|
3777
|
+
|
|
3778
|
+
|
|
3617
3779
|
|
|
3618
3780
|
|
|
3619
3781
|
|
|
@@ -3699,6 +3861,10 @@ var _UndirectedGraph = class _UndirectedGraph extends AbstractGraph {
|
|
|
3699
3861
|
|
|
3700
3862
|
|
|
3701
3863
|
|
|
3864
|
+
|
|
3865
|
+
|
|
3866
|
+
|
|
3867
|
+
|
|
3702
3868
|
|
|
3703
3869
|
|
|
3704
3870
|
|
|
@@ -3783,6 +3949,10 @@ var _UndirectedGraph = class _UndirectedGraph extends AbstractGraph {
|
|
|
3783
3949
|
|
|
3784
3950
|
|
|
3785
3951
|
|
|
3952
|
+
|
|
3953
|
+
|
|
3954
|
+
|
|
3955
|
+
|
|
3786
3956
|
|
|
3787
3957
|
|
|
3788
3958
|
|
|
@@ -3882,6 +4052,10 @@ var _UndirectedGraph = class _UndirectedGraph extends AbstractGraph {
|
|
|
3882
4052
|
|
|
3883
4053
|
|
|
3884
4054
|
|
|
4055
|
+
|
|
4056
|
+
|
|
4057
|
+
|
|
4058
|
+
|
|
3885
4059
|
|
|
3886
4060
|
|
|
3887
4061
|
|
|
@@ -3936,6 +4110,10 @@ var _UndirectedGraph = class _UndirectedGraph extends AbstractGraph {
|
|
|
3936
4110
|
|
|
3937
4111
|
|
|
3938
4112
|
|
|
4113
|
+
|
|
4114
|
+
|
|
4115
|
+
|
|
4116
|
+
|
|
3939
4117
|
|
|
3940
4118
|
|
|
3941
4119
|
|
|
@@ -4060,6 +4238,10 @@ var _UndirectedGraph = class _UndirectedGraph extends AbstractGraph {
|
|
|
4060
4238
|
|
|
4061
4239
|
|
|
4062
4240
|
|
|
4241
|
+
|
|
4242
|
+
|
|
4243
|
+
|
|
4244
|
+
|
|
4063
4245
|
|
|
4064
4246
|
|
|
4065
4247
|
|
|
@@ -4206,6 +4388,10 @@ var _UndirectedGraph = class _UndirectedGraph extends AbstractGraph {
|
|
|
4206
4388
|
|
|
4207
4389
|
|
|
4208
4390
|
|
|
4391
|
+
|
|
4392
|
+
|
|
4393
|
+
|
|
4394
|
+
|
|
4209
4395
|
|
|
4210
4396
|
|
|
4211
4397
|
|
|
@@ -4274,6 +4460,10 @@ var _UndirectedGraph = class _UndirectedGraph extends AbstractGraph {
|
|
|
4274
4460
|
|
|
4275
4461
|
|
|
4276
4462
|
|
|
4463
|
+
|
|
4464
|
+
|
|
4465
|
+
|
|
4466
|
+
|
|
4277
4467
|
|
|
4278
4468
|
|
|
4279
4469
|
|
|
@@ -4324,6 +4514,10 @@ var _UndirectedGraph = class _UndirectedGraph extends AbstractGraph {
|
|
|
4324
4514
|
|
|
4325
4515
|
|
|
4326
4516
|
|
|
4517
|
+
|
|
4518
|
+
|
|
4519
|
+
|
|
4520
|
+
|
|
4327
4521
|
|
|
4328
4522
|
|
|
4329
4523
|
|