data-structure-typed 2.5.1 → 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/CHANGELOG.md +5 -1
- package/MIGRATION.md +169 -0
- package/README.md +135 -23
- package/README_CN.md +551 -143
- package/SPECIFICATION.md +20 -14
- package/SPECIFICATION.zh-CN.md +20 -14
- package/dist/cjs/binary-tree.cjs +6460 -1591
- package/dist/cjs/graph.cjs +440 -20
- package/dist/cjs/hash.cjs +125 -22
- package/dist/cjs/heap.cjs +196 -47
- package/dist/cjs/index.cjs +8486 -2429
- package/dist/cjs/linked-list.cjs +456 -31
- package/dist/cjs/matrix.cjs +79 -9
- package/dist/cjs/priority-queue.cjs +193 -44
- package/dist/cjs/queue.cjs +391 -2
- package/dist/cjs/stack.cjs +92 -6
- package/dist/cjs/trie.cjs +122 -28
- package/dist/cjs-legacy/binary-tree.cjs +6484 -1612
- package/dist/cjs-legacy/graph.cjs +440 -20
- package/dist/cjs-legacy/hash.cjs +125 -22
- package/dist/cjs-legacy/heap.cjs +196 -47
- package/dist/cjs-legacy/index.cjs +8654 -2594
- package/dist/cjs-legacy/linked-list.cjs +456 -31
- package/dist/cjs-legacy/matrix.cjs +79 -9
- package/dist/cjs-legacy/priority-queue.cjs +193 -44
- package/dist/cjs-legacy/queue.cjs +391 -2
- package/dist/cjs-legacy/stack.cjs +92 -6
- package/dist/cjs-legacy/trie.cjs +122 -28
- package/dist/esm/binary-tree.mjs +6460 -1591
- package/dist/esm/graph.mjs +440 -20
- package/dist/esm/hash.mjs +125 -22
- package/dist/esm/heap.mjs +196 -47
- package/dist/esm/index.mjs +8486 -2430
- package/dist/esm/linked-list.mjs +456 -31
- package/dist/esm/matrix.mjs +79 -9
- package/dist/esm/priority-queue.mjs +193 -44
- package/dist/esm/queue.mjs +391 -2
- package/dist/esm/stack.mjs +92 -6
- package/dist/esm/trie.mjs +122 -28
- package/dist/esm-legacy/binary-tree.mjs +6484 -1612
- package/dist/esm-legacy/graph.mjs +440 -20
- package/dist/esm-legacy/hash.mjs +125 -22
- package/dist/esm-legacy/heap.mjs +196 -47
- package/dist/esm-legacy/index.mjs +8654 -2595
- package/dist/esm-legacy/linked-list.mjs +456 -31
- package/dist/esm-legacy/matrix.mjs +79 -9
- package/dist/esm-legacy/priority-queue.mjs +193 -44
- package/dist/esm-legacy/queue.mjs +391 -2
- package/dist/esm-legacy/stack.mjs +92 -6
- package/dist/esm-legacy/trie.mjs +122 -28
- package/dist/types/common/error.d.ts +9 -0
- package/dist/types/common/index.d.ts +1 -1
- package/dist/types/data-structures/binary-tree/avl-tree.d.ts +98 -2
- package/dist/types/data-structures/binary-tree/binary-indexed-tree.d.ts +112 -0
- package/dist/types/data-structures/binary-tree/binary-tree.d.ts +214 -13
- package/dist/types/data-structures/binary-tree/bst.d.ts +294 -3
- package/dist/types/data-structures/binary-tree/red-black-tree.d.ts +155 -8
- package/dist/types/data-structures/binary-tree/segment-tree.d.ts +48 -0
- package/dist/types/data-structures/binary-tree/tree-map.d.ts +1370 -323
- package/dist/types/data-structures/binary-tree/tree-multi-map.d.ts +1329 -316
- package/dist/types/data-structures/binary-tree/tree-multi-set.d.ts +1116 -295
- package/dist/types/data-structures/binary-tree/tree-set.d.ts +1330 -326
- package/dist/types/data-structures/graph/directed-graph.d.ts +80 -0
- package/dist/types/data-structures/graph/undirected-graph.d.ts +72 -0
- package/dist/types/data-structures/hash/hash-map.d.ts +95 -6
- package/dist/types/data-structures/heap/heap.d.ts +154 -12
- package/dist/types/data-structures/linked-list/doubly-linked-list.d.ts +143 -0
- package/dist/types/data-structures/linked-list/singly-linked-list.d.ts +121 -1
- package/dist/types/data-structures/linked-list/skip-linked-list.d.ts +144 -0
- package/dist/types/data-structures/matrix/matrix.d.ts +64 -0
- package/dist/types/data-structures/queue/deque.d.ts +142 -0
- package/dist/types/data-structures/queue/queue.d.ts +109 -0
- package/dist/types/data-structures/stack/stack.d.ts +82 -2
- package/dist/types/data-structures/trie/trie.d.ts +96 -0
- package/dist/types/interfaces/binary-tree.d.ts +2 -3
- package/dist/types/types/data-structures/binary-tree/bst.d.ts +1 -0
- package/dist/types/types/data-structures/binary-tree/tree-map.d.ts +5 -0
- package/dist/types/types/data-structures/binary-tree/tree-multi-set.d.ts +4 -0
- package/dist/types/types/data-structures/binary-tree/tree-set.d.ts +4 -0
- package/dist/umd/data-structure-typed.js +8623 -2564
- package/dist/umd/data-structure-typed.min.js +5 -5
- package/docs-site-docusaurus/docs/api/classes/AVLTree.md +696 -194
- package/docs-site-docusaurus/docs/api/classes/AVLTreeNode.md +11 -11
- package/docs-site-docusaurus/docs/api/classes/AbstractGraph.md +71 -71
- package/docs-site-docusaurus/docs/api/classes/BST.md +639 -189
- package/docs-site-docusaurus/docs/api/classes/BSTNode.md +13 -13
- package/docs-site-docusaurus/docs/api/classes/BinaryIndexedTree.md +15 -15
- package/docs-site-docusaurus/docs/api/classes/BinaryTree.md +148 -160
- package/docs-site-docusaurus/docs/api/classes/BinaryTreeNode.md +13 -13
- package/docs-site-docusaurus/docs/api/classes/Deque.md +105 -91
- package/docs-site-docusaurus/docs/api/classes/DirectedGraph.md +82 -82
- package/docs-site-docusaurus/docs/api/classes/DoublyLinkedList.md +104 -74
- package/docs-site-docusaurus/docs/api/classes/DoublyLinkedListNode.md +8 -8
- package/docs-site-docusaurus/docs/api/classes/FibonacciHeap.md +12 -12
- package/docs-site-docusaurus/docs/api/classes/FibonacciHeapNode.md +1 -1
- package/docs-site-docusaurus/docs/api/classes/HashMap.md +51 -51
- package/docs-site-docusaurus/docs/api/classes/Heap.md +96 -85
- package/docs-site-docusaurus/docs/api/classes/IterableElementBase.md +25 -25
- package/docs-site-docusaurus/docs/api/classes/IterableEntryBase.md +33 -33
- package/docs-site-docusaurus/docs/api/classes/LinearBase.md +50 -50
- package/docs-site-docusaurus/docs/api/classes/LinearLinkedBase.md +55 -55
- package/docs-site-docusaurus/docs/api/classes/LinkedHashMap.md +55 -55
- package/docs-site-docusaurus/docs/api/classes/LinkedListNode.md +6 -6
- package/docs-site-docusaurus/docs/api/classes/LinkedListQueue.md +78 -78
- package/docs-site-docusaurus/docs/api/classes/MapGraph.md +82 -82
- package/docs-site-docusaurus/docs/api/classes/Matrix.md +31 -31
- package/docs-site-docusaurus/docs/api/classes/MaxHeap.md +104 -89
- package/docs-site-docusaurus/docs/api/classes/MaxPriorityQueue.md +104 -89
- package/docs-site-docusaurus/docs/api/classes/MinHeap.md +104 -89
- package/docs-site-docusaurus/docs/api/classes/MinPriorityQueue.md +104 -89
- package/docs-site-docusaurus/docs/api/classes/Navigator.md +5 -5
- package/docs-site-docusaurus/docs/api/classes/PriorityQueue.md +103 -88
- package/docs-site-docusaurus/docs/api/classes/Queue.md +112 -60
- package/docs-site-docusaurus/docs/api/classes/RedBlackTree.md +708 -206
- package/docs-site-docusaurus/docs/api/classes/SegmentTree.md +10 -10
- package/docs-site-docusaurus/docs/api/classes/SinglyLinkedList.md +79 -79
- package/docs-site-docusaurus/docs/api/classes/SinglyLinkedListNode.md +6 -6
- package/docs-site-docusaurus/docs/api/classes/SkipList.md +44 -44
- package/docs-site-docusaurus/docs/api/classes/Stack.md +42 -42
- package/docs-site-docusaurus/docs/api/classes/TreeMap.md +236 -33
- package/docs-site-docusaurus/docs/api/classes/TreeMultiMap.md +162 -46
- package/docs-site-docusaurus/docs/api/classes/TreeSet.md +232 -32
- package/docs-site-docusaurus/docs/api/classes/Trie.md +47 -47
- package/docs-site-docusaurus/docs/api/classes/TrieNode.md +8 -8
- package/docs-site-docusaurus/docs/api/classes/UndirectedGraph.md +81 -81
- package/docs-site-docusaurus/docs/guide/architecture.md +75 -5
- package/docs-site-docusaurus/docs/guide/concepts.md +53 -3
- package/docs-site-docusaurus/docs/guide/faq.md +233 -0
- package/docs-site-docusaurus/docs/guide/guides.md +43 -58
- package/docs-site-docusaurus/docs/guide/installation.md +2 -0
- package/docs-site-docusaurus/docs/guide/integrations.md +75 -176
- package/docs-site-docusaurus/docs/guide/overview.md +132 -11
- package/docs-site-docusaurus/docs/guide/performance.md +2 -0
- package/docs-site-docusaurus/docs/guide/quick-start.md +31 -0
- package/docs-site-docusaurus/docs/guide/use-cases/_category_.json +6 -0
- package/docs-site-docusaurus/docs/guide/use-cases/array-sort-alternative.md +158 -0
- package/docs-site-docusaurus/docs/guide/use-cases/heap-vs-sorting.md +92 -0
- package/docs-site-docusaurus/docs/guide/use-cases/map-vs-treemap.md +151 -0
- package/docs-site-docusaurus/docs/guide/use-cases/priority-queue-typescript.md +113 -0
- package/docs-site-docusaurus/docs/guide/use-cases/treemap-javascript.md +151 -0
- package/docs-site-docusaurus/docusaurus.config.ts +1 -1
- package/docs-site-docusaurus/src/pages/index.tsx +55 -2
- package/docs-site-docusaurus/static/llms.txt +37 -0
- package/docs-site-docusaurus/typedoc.json +1 -0
- package/llms.txt +37 -0
- package/package.json +65 -56
- package/src/common/error.ts +19 -1
- package/src/common/index.ts +1 -1
- package/src/data-structures/base/iterable-element-base.ts +3 -2
- package/src/data-structures/binary-tree/avl-tree.ts +99 -5
- package/src/data-structures/binary-tree/binary-indexed-tree.ts +102 -4
- package/src/data-structures/binary-tree/binary-tree.ts +239 -78
- package/src/data-structures/binary-tree/bst.ts +542 -13
- package/src/data-structures/binary-tree/red-black-tree.ts +155 -15
- package/src/data-structures/binary-tree/segment-tree.ts +42 -0
- package/src/data-structures/binary-tree/tree-map.ts +1223 -261
- package/src/data-structures/binary-tree/tree-multi-map.ts +939 -30
- package/src/data-structures/binary-tree/tree-multi-set.ts +746 -10
- package/src/data-structures/binary-tree/tree-set.ts +1018 -99
- package/src/data-structures/graph/abstract-graph.ts +2 -2
- package/src/data-structures/graph/directed-graph.ts +71 -1
- package/src/data-structures/graph/undirected-graph.ts +64 -1
- package/src/data-structures/hash/hash-map.ts +102 -16
- package/src/data-structures/heap/heap.ts +153 -23
- package/src/data-structures/heap/max-heap.ts +2 -2
- package/src/data-structures/linked-list/doubly-linked-list.ts +139 -0
- package/src/data-structures/linked-list/singly-linked-list.ts +106 -1
- package/src/data-structures/linked-list/skip-linked-list.ts +131 -5
- package/src/data-structures/matrix/matrix.ts +65 -9
- package/src/data-structures/priority-queue/max-priority-queue.ts +2 -2
- package/src/data-structures/queue/deque.ts +130 -0
- package/src/data-structures/queue/queue.ts +109 -0
- package/src/data-structures/stack/stack.ts +75 -5
- package/src/data-structures/trie/trie.ts +86 -2
- package/src/interfaces/binary-tree.ts +1 -9
- package/src/types/data-structures/binary-tree/bst.ts +1 -0
- package/src/types/data-structures/binary-tree/tree-map.ts +6 -0
- package/src/types/data-structures/binary-tree/tree-multi-set.ts +5 -0
- package/src/types/data-structures/binary-tree/tree-set.ts +5 -0
- package/.vitepress/cache/deps_temp_51f5f1b0/chunk-7OIKW5WK.js +0 -12984
- package/.vitepress/cache/deps_temp_51f5f1b0/package.json +0 -3
- package/.vitepress/cache/deps_temp_51f5f1b0/vitepress___@vue_devtools-api.js +0 -4505
- package/.vitepress/cache/deps_temp_51f5f1b0/vitepress___@vueuse_core.js +0 -9731
- package/.vitepress/cache/deps_temp_51f5f1b0/vue.js +0 -347
|
@@ -40,7 +40,7 @@ export declare class SinglyLinkedListNode<E = any> extends LinkedListNode<E> {
|
|
|
40
40
|
* @remarks Time O(1), Space O(1)
|
|
41
41
|
* @template E
|
|
42
42
|
* @template R
|
|
43
|
-
* 1. Node Structure: Each node contains
|
|
43
|
+
* 1. Node Structure: Each node contains two parts: a data field and a pointer (or reference) to the next node. This structure allows forward-only traversal of the linked list.
|
|
44
44
|
* 2. Bidirectional Traversal: Unlike doubly linked lists, singly linked lists can be easily traversed forwards but not backwards.
|
|
45
45
|
* 3. No Centralized Index: Unlike arrays, elements in a linked list are not stored contiguously, so there is no centralized index. Accessing elements in a linked list typically requires traversing from the head or tail node.
|
|
46
46
|
* 4. High Efficiency in Insertion and Deletion: Adding or removing elements in a linked list does not require moving other elements, making these operations more efficient than in arrays.
|
|
@@ -256,6 +256,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
256
256
|
|
|
257
257
|
|
|
258
258
|
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
259
267
|
|
|
260
268
|
|
|
261
269
|
|
|
@@ -308,6 +316,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
308
316
|
|
|
309
317
|
|
|
310
318
|
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
|
|
311
327
|
|
|
312
328
|
|
|
313
329
|
|
|
@@ -360,6 +376,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
360
376
|
|
|
361
377
|
|
|
362
378
|
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
|
|
363
387
|
|
|
364
388
|
|
|
365
389
|
|
|
@@ -403,6 +427,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
403
427
|
|
|
404
428
|
|
|
405
429
|
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
|
|
406
438
|
|
|
407
439
|
|
|
408
440
|
|
|
@@ -482,6 +514,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
482
514
|
|
|
483
515
|
|
|
484
516
|
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
|
|
485
525
|
|
|
486
526
|
|
|
487
527
|
|
|
@@ -530,6 +570,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
530
570
|
|
|
531
571
|
|
|
532
572
|
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
|
|
533
581
|
|
|
534
582
|
|
|
535
583
|
|
|
@@ -569,6 +617,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
569
617
|
|
|
570
618
|
|
|
571
619
|
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
|
|
572
628
|
|
|
573
629
|
|
|
574
630
|
|
|
@@ -609,6 +665,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
609
665
|
|
|
610
666
|
|
|
611
667
|
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
|
|
675
|
+
|
|
612
676
|
|
|
613
677
|
|
|
614
678
|
|
|
@@ -650,6 +714,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
650
714
|
|
|
651
715
|
|
|
652
716
|
|
|
717
|
+
|
|
718
|
+
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
|
|
653
725
|
|
|
654
726
|
|
|
655
727
|
|
|
@@ -698,6 +770,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
698
770
|
|
|
699
771
|
|
|
700
772
|
|
|
773
|
+
|
|
774
|
+
|
|
775
|
+
|
|
776
|
+
|
|
777
|
+
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
|
|
701
781
|
|
|
702
782
|
|
|
703
783
|
|
|
@@ -736,6 +816,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
736
816
|
|
|
737
817
|
|
|
738
818
|
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
|
|
825
|
+
|
|
826
|
+
|
|
739
827
|
|
|
740
828
|
|
|
741
829
|
|
|
@@ -778,6 +866,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
778
866
|
|
|
779
867
|
|
|
780
868
|
|
|
869
|
+
|
|
870
|
+
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
|
|
876
|
+
|
|
781
877
|
|
|
782
878
|
|
|
783
879
|
|
|
@@ -871,6 +967,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
871
967
|
|
|
872
968
|
|
|
873
969
|
|
|
970
|
+
|
|
971
|
+
|
|
972
|
+
|
|
973
|
+
|
|
974
|
+
|
|
975
|
+
|
|
976
|
+
|
|
977
|
+
|
|
874
978
|
|
|
875
979
|
|
|
876
980
|
|
|
@@ -917,6 +1021,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
917
1021
|
|
|
918
1022
|
|
|
919
1023
|
|
|
1024
|
+
|
|
1025
|
+
|
|
1026
|
+
|
|
1027
|
+
|
|
1028
|
+
|
|
1029
|
+
|
|
1030
|
+
|
|
1031
|
+
|
|
920
1032
|
|
|
921
1033
|
|
|
922
1034
|
|
|
@@ -982,6 +1094,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
982
1094
|
|
|
983
1095
|
|
|
984
1096
|
|
|
1097
|
+
|
|
1098
|
+
|
|
1099
|
+
|
|
1100
|
+
|
|
1101
|
+
|
|
1102
|
+
|
|
1103
|
+
|
|
1104
|
+
|
|
985
1105
|
|
|
986
1106
|
|
|
987
1107
|
|
|
@@ -71,6 +71,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
71
71
|
|
|
72
72
|
|
|
73
73
|
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
74
82
|
|
|
75
83
|
|
|
76
84
|
|
|
@@ -107,6 +115,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
107
115
|
|
|
108
116
|
|
|
109
117
|
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
110
126
|
|
|
111
127
|
|
|
112
128
|
|
|
@@ -144,6 +160,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
144
160
|
|
|
145
161
|
|
|
146
162
|
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
147
171
|
|
|
148
172
|
|
|
149
173
|
|
|
@@ -186,6 +210,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
186
210
|
|
|
187
211
|
|
|
188
212
|
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
|
|
189
221
|
|
|
190
222
|
|
|
191
223
|
|
|
@@ -238,6 +270,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
238
270
|
|
|
239
271
|
|
|
240
272
|
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
|
|
241
281
|
|
|
242
282
|
|
|
243
283
|
|
|
@@ -294,6 +334,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
294
334
|
|
|
295
335
|
|
|
296
336
|
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
|
|
297
345
|
|
|
298
346
|
|
|
299
347
|
|
|
@@ -334,6 +382,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
334
382
|
|
|
335
383
|
|
|
336
384
|
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
|
|
337
393
|
|
|
338
394
|
|
|
339
395
|
|
|
@@ -381,6 +437,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
381
437
|
|
|
382
438
|
|
|
383
439
|
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
|
|
384
448
|
|
|
385
449
|
|
|
386
450
|
|
|
@@ -420,6 +484,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
420
484
|
|
|
421
485
|
|
|
422
486
|
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
|
|
423
495
|
|
|
424
496
|
|
|
425
497
|
|
|
@@ -456,6 +528,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
456
528
|
|
|
457
529
|
|
|
458
530
|
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
|
|
459
539
|
|
|
460
540
|
|
|
461
541
|
|
|
@@ -493,6 +573,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
493
573
|
|
|
494
574
|
|
|
495
575
|
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
|
|
496
584
|
|
|
497
585
|
|
|
498
586
|
|
|
@@ -533,6 +621,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
533
621
|
|
|
534
622
|
|
|
535
623
|
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
|
|
536
632
|
|
|
537
633
|
|
|
538
634
|
|
|
@@ -573,6 +669,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
573
669
|
|
|
574
670
|
|
|
575
671
|
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
|
|
576
680
|
|
|
577
681
|
|
|
578
682
|
|
|
@@ -610,6 +714,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
610
714
|
|
|
611
715
|
|
|
612
716
|
|
|
717
|
+
|
|
718
|
+
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
|
|
613
725
|
|
|
614
726
|
|
|
615
727
|
|
|
@@ -647,6 +759,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
647
759
|
|
|
648
760
|
|
|
649
761
|
|
|
762
|
+
|
|
763
|
+
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
|
|
650
770
|
|
|
651
771
|
|
|
652
772
|
|
|
@@ -687,6 +807,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
687
807
|
|
|
688
808
|
|
|
689
809
|
|
|
810
|
+
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
|
|
690
818
|
|
|
691
819
|
|
|
692
820
|
|
|
@@ -724,6 +852,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
724
852
|
|
|
725
853
|
|
|
726
854
|
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
|
|
861
|
+
|
|
862
|
+
|
|
727
863
|
|
|
728
864
|
|
|
729
865
|
|
|
@@ -761,6 +897,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
761
897
|
|
|
762
898
|
|
|
763
899
|
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
|
|
903
|
+
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
|
|
764
908
|
|
|
765
909
|
|
|
766
910
|
|
|
@@ -164,6 +164,14 @@ export declare class Matrix {
|
|
|
164
164
|
|
|
165
165
|
|
|
166
166
|
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
167
175
|
|
|
168
176
|
|
|
169
177
|
|
|
@@ -224,6 +232,14 @@ export declare class Matrix {
|
|
|
224
232
|
|
|
225
233
|
|
|
226
234
|
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
227
243
|
|
|
228
244
|
|
|
229
245
|
|
|
@@ -276,6 +292,14 @@ export declare class Matrix {
|
|
|
276
292
|
|
|
277
293
|
|
|
278
294
|
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
279
303
|
|
|
280
304
|
|
|
281
305
|
|
|
@@ -337,6 +361,14 @@ export declare class Matrix {
|
|
|
337
361
|
|
|
338
362
|
|
|
339
363
|
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
|
|
340
372
|
|
|
341
373
|
|
|
342
374
|
|
|
@@ -381,6 +413,14 @@ export declare class Matrix {
|
|
|
381
413
|
|
|
382
414
|
|
|
383
415
|
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
|
|
384
424
|
|
|
385
425
|
|
|
386
426
|
|
|
@@ -440,6 +480,14 @@ export declare class Matrix {
|
|
|
440
480
|
|
|
441
481
|
|
|
442
482
|
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
|
|
443
491
|
|
|
444
492
|
|
|
445
493
|
|
|
@@ -495,6 +543,14 @@ export declare class Matrix {
|
|
|
495
543
|
|
|
496
544
|
|
|
497
545
|
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
|
|
498
554
|
|
|
499
555
|
|
|
500
556
|
|
|
@@ -543,6 +599,14 @@ export declare class Matrix {
|
|
|
543
599
|
|
|
544
600
|
|
|
545
601
|
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
546
610
|
|
|
547
611
|
|
|
548
612
|
|