data-structure-typed 1.16.1 → 1.17.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.
Files changed (100) hide show
  1. package/README.md +1 -1
  2. package/dist/data-structures/linked-list/doubly-linked-list.d.ts +178 -70
  3. package/dist/data-structures/linked-list/doubly-linked-list.js +475 -244
  4. package/dist/data-structures/linked-list/index.d.ts +1 -0
  5. package/dist/data-structures/linked-list/index.js +1 -0
  6. package/dist/data-structures/linked-list/singly-linked-list.d.ts +111 -248
  7. package/dist/data-structures/linked-list/singly-linked-list.js +338 -619
  8. package/dist/data-structures/linked-list/skip-linked-list.d.ts +2 -1
  9. package/dist/data-structures/linked-list/skip-linked-list.js +7 -0
  10. package/dist/data-structures/matrix/vector2d.js +2 -2
  11. package/dist/data-structures/types/binary-tree.d.ts +0 -5
  12. package/docs/assets/search.js +1 -1
  13. package/docs/classes/AVLTree.html +94 -94
  14. package/docs/classes/AVLTreeNode.html +37 -37
  15. package/docs/classes/AaTree.html +2 -2
  16. package/docs/classes/AbstractEdge.html +12 -12
  17. package/docs/classes/AbstractGraph.html +30 -30
  18. package/docs/classes/AbstractVertex.html +7 -7
  19. package/docs/classes/ArrayDeque.html +15 -15
  20. package/docs/classes/BST.html +87 -87
  21. package/docs/classes/BSTNode.html +37 -37
  22. package/docs/classes/BTree.html +2 -2
  23. package/docs/classes/BinaryIndexedTree.html +8 -8
  24. package/docs/classes/BinaryTree.html +83 -83
  25. package/docs/classes/BinaryTreeNode.html +37 -37
  26. package/docs/classes/Character.html +5 -5
  27. package/docs/classes/CoordinateMap.html +11 -11
  28. package/docs/classes/CoordinateSet.html +10 -10
  29. package/docs/classes/Deque.html +564 -356
  30. package/docs/classes/DirectedEdge.html +18 -18
  31. package/docs/classes/DirectedGraph.html +42 -42
  32. package/docs/classes/DirectedVertex.html +7 -7
  33. package/docs/classes/DoublyLinkedList.html +546 -313
  34. package/docs/classes/DoublyLinkedListNode.html +53 -36
  35. package/docs/classes/Heap.html +21 -21
  36. package/docs/classes/HeapItem.html +9 -9
  37. package/docs/classes/Matrix2D.html +17 -17
  38. package/docs/classes/MatrixNTI2D.html +5 -5
  39. package/docs/classes/MaxHeap.html +21 -21
  40. package/docs/classes/MaxPriorityQueue.html +35 -35
  41. package/docs/classes/MinHeap.html +21 -21
  42. package/docs/classes/MinPriorityQueue.html +35 -35
  43. package/docs/classes/Navigator.html +11 -11
  44. package/docs/classes/ObjectDeque.html +26 -26
  45. package/docs/classes/PriorityQueue.html +33 -33
  46. package/docs/classes/Queue.html +15 -15
  47. package/docs/classes/RBTree.html +2 -2
  48. package/docs/classes/SegmentTree.html +13 -13
  49. package/docs/classes/SegmentTreeNode.html +27 -27
  50. package/docs/classes/SinglyLinkedList.html +277 -606
  51. package/docs/classes/SinglyLinkedListNode.html +40 -167
  52. package/docs/classes/SkipLinkedList.html +150 -0
  53. package/docs/classes/SplayTree.html +2 -2
  54. package/docs/classes/Stack.html +13 -13
  55. package/docs/classes/TreeMultiSet.html +87 -87
  56. package/docs/classes/TreeNode.html +9 -9
  57. package/docs/classes/Trie.html +14 -14
  58. package/docs/classes/TrieNode.html +12 -12
  59. package/docs/classes/TwoThreeTree.html +2 -2
  60. package/docs/classes/UndirectedEdge.html +14 -14
  61. package/docs/classes/UndirectedGraph.html +36 -36
  62. package/docs/classes/UndirectedVertex.html +7 -7
  63. package/docs/classes/Vector2D.html +29 -29
  64. package/docs/enums/CP.html +5 -5
  65. package/docs/enums/FamilyPosition.html +5 -5
  66. package/docs/enums/LoopType.html +4 -4
  67. package/docs/index.html +3 -3
  68. package/docs/interfaces/AVLTreeDeleted.html +4 -4
  69. package/docs/interfaces/HeapOptions.html +3 -3
  70. package/docs/interfaces/IDirectedGraph.html +8 -8
  71. package/docs/interfaces/IGraph.html +20 -20
  72. package/docs/interfaces/NavigatorParams.html +6 -6
  73. package/docs/interfaces/PriorityQueueOptions.html +5 -5
  74. package/docs/modules.html +2 -2
  75. package/docs/types/BSTComparator.html +2 -2
  76. package/docs/types/BSTDeletedResult.html +2 -2
  77. package/docs/types/BinaryTreeDeleted.html +2 -2
  78. package/docs/types/BinaryTreeNodeId.html +2 -2
  79. package/docs/types/BinaryTreeNodePropertyName.html +2 -2
  80. package/docs/types/DFSOrderPattern.html +2 -2
  81. package/docs/types/DijkstraResult.html +2 -2
  82. package/docs/types/Direction.html +2 -2
  83. package/docs/types/DoublyLinkedListGetBy.html +2 -2
  84. package/docs/types/NodeOrPropertyName.html +2 -2
  85. package/docs/types/PriorityQueueComparator.html +2 -2
  86. package/docs/types/PriorityQueueDFSOrderPattern.html +2 -2
  87. package/docs/types/ResultByProperty.html +2 -2
  88. package/docs/types/ResultsByProperty.html +2 -2
  89. package/docs/types/SegmentTreeNodeVal.html +2 -2
  90. package/docs/types/SpecifyOptional.html +2 -2
  91. package/docs/types/Thunk.html +2 -2
  92. package/docs/types/ToThunkFn.html +2 -2
  93. package/docs/types/TopologicalStatus.html +2 -2
  94. package/docs/types/TreeMultiSetDeletedResult.html +2 -2
  95. package/docs/types/TrlAsyncFn.html +2 -2
  96. package/docs/types/TrlFn.html +2 -2
  97. package/docs/types/Turning.html +2 -2
  98. package/docs/types/VertexId.html +2 -2
  99. package/package.json +1 -3
  100. package/docs/interfaces/BinaryTreeNodeObj.html +0 -168
@@ -25,7 +25,7 @@
25
25
  <ul class="tsd-hierarchy">
26
26
  <li><span class="target">HeapItem</span></li></ul></section><aside class="tsd-sources">
27
27
  <ul>
28
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L11">src/data-structures/heap/heap.ts:11</a></li></ul></aside>
28
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L11">src/data-structures/heap/heap.ts:11</a></li></ul></aside>
29
29
  <section class="tsd-panel-group tsd-index-group">
30
30
  <section class="tsd-panel tsd-index-panel">
31
31
  <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -66,19 +66,19 @@
66
66
  <h5><span class="tsd-kind-parameter">val</span>: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol"> = null</span></h5></li></ul></div>
67
67
  <h4 class="tsd-returns-title">Returns <a href="HeapItem.html" class="tsd-signature-type tsd-kind-class">HeapItem</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
68
68
  <ul>
69
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L13">src/data-structures/heap/heap.ts:13</a></li></ul></aside></li></ul></section></section>
69
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L13">src/data-structures/heap/heap.ts:13</a></li></ul></aside></li></ul></section></section>
70
70
  <section class="tsd-panel-group tsd-member-group">
71
71
  <h2>Properties</h2>
72
72
  <section class="tsd-panel tsd-member tsd-is-private"><a id="_priority" class="tsd-anchor"></a>
73
73
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_priority</span><a href="#_priority" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
74
74
  <div class="tsd-signature"><span class="tsd-kind-property">_priority</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
75
75
  <ul>
76
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L18">src/data-structures/heap/heap.ts:18</a></li></ul></aside></section>
76
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L18">src/data-structures/heap/heap.ts:18</a></li></ul></aside></section>
77
77
  <section class="tsd-panel tsd-member tsd-is-private"><a id="_val" class="tsd-anchor"></a>
78
78
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_val</span><a href="#_val" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
79
79
  <div class="tsd-signature"><span class="tsd-kind-property">_val</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type tsd-kind-type-parameter">T</span></div><aside class="tsd-sources">
80
80
  <ul>
81
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L28">src/data-structures/heap/heap.ts:28</a></li></ul></aside></section></section>
81
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L28">src/data-structures/heap/heap.ts:28</a></li></ul></aside></section></section>
82
82
  <section class="tsd-panel-group tsd-member-group">
83
83
  <h2>Accessors</h2>
84
84
  <section class="tsd-panel tsd-member"><a id="priority" class="tsd-anchor"></a>
@@ -88,7 +88,7 @@
88
88
  <li class="tsd-description">
89
89
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
90
90
  <ul>
91
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L20">src/data-structures/heap/heap.ts:20</a></li></ul></aside></li>
91
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L20">src/data-structures/heap/heap.ts:20</a></li></ul></aside></li>
92
92
  <li class="tsd-signature" id="priority.priority-2"><span class="tsd-signature-symbol">set</span> priority<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">value</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
93
93
  <li class="tsd-description">
94
94
  <div class="tsd-parameters">
@@ -98,7 +98,7 @@
98
98
  <h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">number</span></h5></li></ul></div>
99
99
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
100
100
  <ul>
101
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L24">src/data-structures/heap/heap.ts:24</a></li></ul></aside></li></ul></section>
101
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L24">src/data-structures/heap/heap.ts:24</a></li></ul></aside></li></ul></section>
102
102
  <section class="tsd-panel tsd-member"><a id="val" class="tsd-anchor"></a>
103
103
  <h3 class="tsd-anchor-link"><span>val</span><a href="#val" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
104
104
  <ul class="tsd-signatures">
@@ -106,7 +106,7 @@
106
106
  <li class="tsd-description">
107
107
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type tsd-kind-type-parameter">T</span></h4><aside class="tsd-sources">
108
108
  <ul>
109
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L30">src/data-structures/heap/heap.ts:30</a></li></ul></aside></li>
109
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L30">src/data-structures/heap/heap.ts:30</a></li></ul></aside></li>
110
110
  <li class="tsd-signature" id="val.val-2"><span class="tsd-signature-symbol">set</span> val<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">value</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
111
111
  <li class="tsd-description">
112
112
  <div class="tsd-parameters">
@@ -116,7 +116,7 @@
116
116
  <h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type tsd-kind-type-parameter">T</span></h5></li></ul></div>
117
117
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
118
118
  <ul>
119
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L34">src/data-structures/heap/heap.ts:34</a></li></ul></aside></li></ul></section></section></div>
119
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L34">src/data-structures/heap/heap.ts:34</a></li></ul></aside></li></ul></section></section></div>
120
120
  <div class="col-sidebar">
121
121
  <div class="page-menu">
122
122
  <div class="tsd-navigation settings">
@@ -186,6 +186,7 @@
186
186
  <li><a href="SegmentTreeNode.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Segment<wbr/>Tree<wbr/>Node</span></a></li>
187
187
  <li><a href="SinglyLinkedList.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Singly<wbr/>Linked<wbr/>List</span></a></li>
188
188
  <li><a href="SinglyLinkedListNode.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Singly<wbr/>Linked<wbr/>List<wbr/>Node</span></a></li>
189
+ <li><a href="SkipLinkedList.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Skip<wbr/>Linked<wbr/>List</span></a></li>
189
190
  <li><a href="SplayTree.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Splay<wbr/>Tree</span></a></li>
190
191
  <li><a href="Stack.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Stack</span></a></li>
191
192
  <li><a href="TreeMultiSet.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Tree<wbr/>Multi<wbr/>Set</span></a></li>
@@ -198,7 +199,6 @@
198
199
  <li><a href="UndirectedVertex.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Undirected<wbr/>Vertex</span></a></li>
199
200
  <li><a href="Vector2D.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Vector2D</span></a></li>
200
201
  <li><a href="../interfaces/AVLTreeDeleted.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g></svg><span>AVLTree<wbr/>Deleted</span></a></li>
201
- <li><a href="../interfaces/BinaryTreeNodeObj.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Binary<wbr/>Tree<wbr/>Node<wbr/>Obj</span></a></li>
202
202
  <li><a href="../interfaces/HeapOptions.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Heap<wbr/>Options</span></a></li>
203
203
  <li><a href="../interfaces/IDirectedGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IDirected<wbr/>Graph</span></a></li>
204
204
  <li><a href="../interfaces/IGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IGraph</span></a></li>
@@ -20,7 +20,7 @@
20
20
  <ul class="tsd-hierarchy">
21
21
  <li><span class="target">Matrix2D</span></li></ul></section><aside class="tsd-sources">
22
22
  <ul>
23
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix2d.ts#L10">src/data-structures/matrix/matrix2d.ts:10</a></li></ul></aside>
23
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix2d.ts#L10">src/data-structures/matrix/matrix2d.ts:10</a></li></ul></aside>
24
24
  <section class="tsd-panel-group tsd-index-group">
25
25
  <section class="tsd-panel tsd-index-panel">
26
26
  <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -75,14 +75,14 @@ an instance of the <code>Vector2D</code> class.</p>
75
75
  <h4 class="tsd-returns-title">Returns <a href="Matrix2D.html" class="tsd-signature-type tsd-kind-class">Matrix2D</a></h4>
76
76
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
77
77
  <ul>
78
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix2d.ts#L19">src/data-structures/matrix/matrix2d.ts:19</a></li></ul></aside></li></ul></section></section>
78
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix2d.ts#L19">src/data-structures/matrix/matrix2d.ts:19</a></li></ul></aside></li></ul></section></section>
79
79
  <section class="tsd-panel-group tsd-member-group">
80
80
  <h2>Properties</h2>
81
81
  <section class="tsd-panel tsd-member tsd-is-private"><a id="_matrix" class="tsd-anchor"></a>
82
82
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <code class="tsd-tag ts-flagReadonly">Readonly</code> <span>_matrix</span><a href="#_matrix" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
83
83
  <div class="tsd-signature"><span class="tsd-kind-property">_matrix</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources">
84
84
  <ul>
85
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix2d.ts#L11">src/data-structures/matrix/matrix2d.ts:11</a></li></ul></aside></section></section>
85
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix2d.ts#L11">src/data-structures/matrix/matrix2d.ts:11</a></li></ul></aside></section></section>
86
86
  <section class="tsd-panel-group tsd-member-group">
87
87
  <h2>Accessors</h2>
88
88
  <section class="tsd-panel tsd-member"><a id="m" class="tsd-anchor"></a>
@@ -97,7 +97,7 @@ array of numbers.</p>
97
97
 
98
98
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
99
99
  <ul>
100
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix2d.ts#L56">src/data-structures/matrix/matrix2d.ts:56</a></li></ul></aside></li></ul></section>
100
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix2d.ts#L56">src/data-structures/matrix/matrix2d.ts:56</a></li></ul></aside></li></ul></section>
101
101
  <section class="tsd-panel tsd-member"><a id="toVector" class="tsd-anchor"></a>
102
102
  <h3 class="tsd-anchor-link"><span>to<wbr/>Vector</span><a href="#toVector" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
103
103
  <ul class="tsd-signatures">
@@ -111,7 +111,7 @@ the first column of the matrix.</p>
111
111
 
112
112
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
113
113
  <ul>
114
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix2d.ts#L66">src/data-structures/matrix/matrix2d.ts:66</a></li></ul></aside></li></ul></section>
114
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix2d.ts#L66">src/data-structures/matrix/matrix2d.ts:66</a></li></ul></aside></li></ul></section>
115
115
  <section class="tsd-panel tsd-member"><a id="empty" class="tsd-anchor"></a>
116
116
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>empty</span><a href="#empty" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
117
117
  <ul class="tsd-signatures">
@@ -123,7 +123,7 @@ the first column of the matrix.</p>
123
123
 
124
124
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
125
125
  <ul>
126
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix2d.ts#L36">src/data-structures/matrix/matrix2d.ts:36</a></li></ul></aside></li></ul></section>
126
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix2d.ts#L36">src/data-structures/matrix/matrix2d.ts:36</a></li></ul></aside></li></ul></section>
127
127
  <section class="tsd-panel tsd-member"><a id="identity" class="tsd-anchor"></a>
128
128
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>identity</span><a href="#identity" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
129
129
  <ul class="tsd-signatures">
@@ -135,7 +135,7 @@ the first column of the matrix.</p>
135
135
 
136
136
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
137
137
  <ul>
138
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix2d.ts#L44">src/data-structures/matrix/matrix2d.ts:44</a></li></ul></aside></li></ul></section></section>
138
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix2d.ts#L44">src/data-structures/matrix/matrix2d.ts:44</a></li></ul></aside></li></ul></section></section>
139
139
  <section class="tsd-panel-group tsd-member-group">
140
140
  <h2>Methods</h2>
141
141
  <section class="tsd-panel tsd-member"><a id="add" class="tsd-anchor"></a>
@@ -162,7 +162,7 @@ the first column of the matrix.</p>
162
162
 
163
163
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
164
164
  <ul>
165
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix2d.ts#L76">src/data-structures/matrix/matrix2d.ts:76</a></li></ul></aside></li></ul></section>
165
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix2d.ts#L76">src/data-structures/matrix/matrix2d.ts:76</a></li></ul></aside></li></ul></section>
166
166
  <section class="tsd-panel tsd-member"><a id="multiply" class="tsd-anchor"></a>
167
167
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>multiply</span><a href="#multiply" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
168
168
  <ul class="tsd-signatures">
@@ -187,7 +187,7 @@ the first column of the matrix.</p>
187
187
 
188
188
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
189
189
  <ul>
190
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix2d.ts#L109">src/data-structures/matrix/matrix2d.ts:109</a></li></ul></aside></li></ul></section>
190
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix2d.ts#L109">src/data-structures/matrix/matrix2d.ts:109</a></li></ul></aside></li></ul></section>
191
191
  <section class="tsd-panel tsd-member"><a id="multiplyByValue" class="tsd-anchor"></a>
192
192
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>multiply<wbr/>By<wbr/>Value</span><a href="#multiplyByValue" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
193
193
  <ul class="tsd-signatures">
@@ -213,7 +213,7 @@ matrix. It contains a property <code>m</code> that is a 2D array representing th
213
213
 
214
214
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
215
215
  <ul>
216
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix2d.ts#L129">src/data-structures/matrix/matrix2d.ts:129</a></li></ul></aside></li></ul></section>
216
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix2d.ts#L129">src/data-structures/matrix/matrix2d.ts:129</a></li></ul></aside></li></ul></section>
217
217
  <section class="tsd-panel tsd-member"><a id="multiplyByVector" class="tsd-anchor"></a>
218
218
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>multiply<wbr/>By<wbr/>Vector</span><a href="#multiplyByVector" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
219
219
  <ul class="tsd-signatures">
@@ -238,7 +238,7 @@ matrix. It contains a property <code>m</code> that is a 2D array representing th
238
238
 
239
239
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
240
240
  <ul>
241
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix2d.ts#L145">src/data-structures/matrix/matrix2d.ts:145</a></li></ul></aside></li></ul></section>
241
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix2d.ts#L145">src/data-structures/matrix/matrix2d.ts:145</a></li></ul></aside></li></ul></section>
242
242
  <section class="tsd-panel tsd-member"><a id="rotate" class="tsd-anchor"></a>
243
243
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>rotate</span><a href="#rotate" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
244
244
  <ul class="tsd-signatures">
@@ -258,7 +258,7 @@ matrix. It contains a property <code>m</code> that is a 2D array representing th
258
258
 
259
259
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
260
260
  <ul>
261
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix2d.ts#L184">src/data-structures/matrix/matrix2d.ts:184</a></li></ul></aside></li></ul></section>
261
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix2d.ts#L184">src/data-structures/matrix/matrix2d.ts:184</a></li></ul></aside></li></ul></section>
262
262
  <section class="tsd-panel tsd-member"><a id="scale" class="tsd-anchor"></a>
263
263
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>scale</span><a href="#scale" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
264
264
  <ul class="tsd-signatures">
@@ -279,7 +279,7 @@ should be scaled.</p>
279
279
 
280
280
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
281
281
  <ul>
282
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix2d.ts#L175">src/data-structures/matrix/matrix2d.ts:175</a></li></ul></aside></li></ul></section>
282
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix2d.ts#L175">src/data-structures/matrix/matrix2d.ts:175</a></li></ul></aside></li></ul></section>
283
283
  <section class="tsd-panel tsd-member"><a id="subtract" class="tsd-anchor"></a>
284
284
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>subtract</span><a href="#subtract" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
285
285
  <ul class="tsd-signatures">
@@ -305,7 +305,7 @@ representing the matrix elements.</p>
305
305
 
306
306
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
307
307
  <ul>
308
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix2d.ts#L93">src/data-structures/matrix/matrix2d.ts:93</a></li></ul></aside></li></ul></section>
308
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix2d.ts#L93">src/data-structures/matrix/matrix2d.ts:93</a></li></ul></aside></li></ul></section>
309
309
  <section class="tsd-panel tsd-member"><a id="translate" class="tsd-anchor"></a>
310
310
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>translate</span><a href="#translate" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
311
311
  <ul class="tsd-signatures">
@@ -326,7 +326,7 @@ and y, and an optional w component.</p>
326
326
 
327
327
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
328
328
  <ul>
329
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix2d.ts#L200">src/data-structures/matrix/matrix2d.ts:200</a></li></ul></aside></li></ul></section>
329
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix2d.ts#L200">src/data-structures/matrix/matrix2d.ts:200</a></li></ul></aside></li></ul></section>
330
330
  <section class="tsd-panel tsd-member"><a id="view" class="tsd-anchor"></a>
331
331
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>view</span><a href="#view" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
332
332
  <ul class="tsd-signatures">
@@ -353,7 +353,7 @@ calculate the centerY value, which is the vertical center of the view.</p>
353
353
 
354
354
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
355
355
  <ul>
356
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix2d.ts#L157">src/data-structures/matrix/matrix2d.ts:157</a></li></ul></aside></li></ul></section></section></div>
356
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix2d.ts#L157">src/data-structures/matrix/matrix2d.ts:157</a></li></ul></aside></li></ul></section></section></div>
357
357
  <div class="col-sidebar">
358
358
  <div class="page-menu">
359
359
  <div class="tsd-navigation settings">
@@ -433,6 +433,7 @@ calculate the centerY value, which is the vertical center of the view.</p>
433
433
  <li><a href="SegmentTreeNode.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Segment<wbr/>Tree<wbr/>Node</span></a></li>
434
434
  <li><a href="SinglyLinkedList.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Singly<wbr/>Linked<wbr/>List</span></a></li>
435
435
  <li><a href="SinglyLinkedListNode.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Singly<wbr/>Linked<wbr/>List<wbr/>Node</span></a></li>
436
+ <li><a href="SkipLinkedList.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Skip<wbr/>Linked<wbr/>List</span></a></li>
436
437
  <li><a href="SplayTree.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Splay<wbr/>Tree</span></a></li>
437
438
  <li><a href="Stack.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Stack</span></a></li>
438
439
  <li><a href="TreeMultiSet.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Tree<wbr/>Multi<wbr/>Set</span></a></li>
@@ -445,7 +446,6 @@ calculate the centerY value, which is the vertical center of the view.</p>
445
446
  <li><a href="UndirectedVertex.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Undirected<wbr/>Vertex</span></a></li>
446
447
  <li><a href="Vector2D.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Vector2D</span></a></li>
447
448
  <li><a href="../interfaces/AVLTreeDeleted.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g></svg><span>AVLTree<wbr/>Deleted</span></a></li>
448
- <li><a href="../interfaces/BinaryTreeNodeObj.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Binary<wbr/>Tree<wbr/>Node<wbr/>Obj</span></a></li>
449
449
  <li><a href="../interfaces/HeapOptions.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Heap<wbr/>Options</span></a></li>
450
450
  <li><a href="../interfaces/IDirectedGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IDirected<wbr/>Graph</span></a></li>
451
451
  <li><a href="../interfaces/IGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IGraph</span></a></li>
@@ -35,7 +35,7 @@
35
35
  <ul class="tsd-hierarchy">
36
36
  <li><span class="target">MatrixNTI2D</span></li></ul></section><aside class="tsd-sources">
37
37
  <ul>
38
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix.ts#L9">src/data-structures/matrix/matrix.ts:9</a></li></ul></aside>
38
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix.ts#L9">src/data-structures/matrix/matrix.ts:9</a></li></ul></aside>
39
39
  <section class="tsd-panel-group tsd-index-group">
40
40
  <section class="tsd-panel tsd-index-panel">
41
41
  <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -86,14 +86,14 @@ given initial value or 0 if not provided.</p>
86
86
  <h4 class="tsd-returns-title">Returns <a href="MatrixNTI2D.html" class="tsd-signature-type tsd-kind-class">MatrixNTI2D</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4>
87
87
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
88
88
  <ul>
89
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix.ts#L17">src/data-structures/matrix/matrix.ts:17</a></li></ul></aside></li></ul></section></section>
89
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix.ts#L17">src/data-structures/matrix/matrix.ts:17</a></li></ul></aside></li></ul></section></section>
90
90
  <section class="tsd-panel-group tsd-member-group">
91
91
  <h2>Properties</h2>
92
92
  <section class="tsd-panel tsd-member tsd-is-private"><a id="_matrix" class="tsd-anchor"></a>
93
93
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <code class="tsd-tag ts-flagReadonly">Readonly</code> <span>_matrix</span><a href="#_matrix" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
94
94
  <div class="tsd-signature"><span class="tsd-kind-property">_matrix</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources">
95
95
  <ul>
96
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix.ts#L10">src/data-structures/matrix/matrix.ts:10</a></li></ul></aside></section></section>
96
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix.ts#L10">src/data-structures/matrix/matrix.ts:10</a></li></ul></aside></section></section>
97
97
  <section class="tsd-panel-group tsd-member-group">
98
98
  <h2>Methods</h2>
99
99
  <section class="tsd-panel tsd-member"><a id="toArray" class="tsd-anchor"></a>
@@ -103,7 +103,7 @@ given initial value or 0 if not provided.</p>
103
103
  <li class="tsd-description">
104
104
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
105
105
  <ul>
106
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/matrix/matrix.ts#L24">src/data-structures/matrix/matrix.ts:24</a></li></ul></aside></li></ul></section></section></div>
106
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/matrix/matrix.ts#L24">src/data-structures/matrix/matrix.ts:24</a></li></ul></aside></li></ul></section></section></div>
107
107
  <div class="col-sidebar">
108
108
  <div class="page-menu">
109
109
  <div class="tsd-navigation settings">
@@ -171,6 +171,7 @@ given initial value or 0 if not provided.</p>
171
171
  <li><a href="SegmentTreeNode.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Segment<wbr/>Tree<wbr/>Node</span></a></li>
172
172
  <li><a href="SinglyLinkedList.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Singly<wbr/>Linked<wbr/>List</span></a></li>
173
173
  <li><a href="SinglyLinkedListNode.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Singly<wbr/>Linked<wbr/>List<wbr/>Node</span></a></li>
174
+ <li><a href="SkipLinkedList.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Skip<wbr/>Linked<wbr/>List</span></a></li>
174
175
  <li><a href="SplayTree.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Splay<wbr/>Tree</span></a></li>
175
176
  <li><a href="Stack.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Stack</span></a></li>
176
177
  <li><a href="TreeMultiSet.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Tree<wbr/>Multi<wbr/>Set</span></a></li>
@@ -183,7 +184,6 @@ given initial value or 0 if not provided.</p>
183
184
  <li><a href="UndirectedVertex.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Undirected<wbr/>Vertex</span></a></li>
184
185
  <li><a href="Vector2D.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Vector2D</span></a></li>
185
186
  <li><a href="../interfaces/AVLTreeDeleted.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g></svg><span>AVLTree<wbr/>Deleted</span></a></li>
186
- <li><a href="../interfaces/BinaryTreeNodeObj.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Binary<wbr/>Tree<wbr/>Node<wbr/>Obj</span></a></li>
187
187
  <li><a href="../interfaces/HeapOptions.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Heap<wbr/>Options</span></a></li>
188
188
  <li><a href="../interfaces/IDirectedGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IDirected<wbr/>Graph</span></a></li>
189
189
  <li><a href="../interfaces/IGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IGraph</span></a></li>
@@ -27,7 +27,7 @@
27
27
  <ul class="tsd-hierarchy">
28
28
  <li><span class="target">MaxHeap</span></li></ul></li></ul></section><aside class="tsd-sources">
29
29
  <ul>
30
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/max-heap.ts#L17">src/data-structures/heap/max-heap.ts:17</a></li></ul></aside>
30
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/max-heap.ts#L17">src/data-structures/heap/max-heap.ts:17</a></li></ul></aside>
31
31
  <section class="tsd-panel-group tsd-index-group">
32
32
  <section class="tsd-panel tsd-index-panel">
33
33
  <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -89,7 +89,7 @@ type <code>HeapOptions&lt;T&gt;</code>, which is a generic type that represents
89
89
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
90
90
  <p>Overrides <a href="Heap.html">Heap</a>.<a href="Heap.html#constructor">constructor</a></p>
91
91
  <ul>
92
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/max-heap.ts#L25">src/data-structures/heap/max-heap.ts:25</a></li></ul></aside></li></ul></section></section>
92
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/max-heap.ts#L25">src/data-structures/heap/max-heap.ts:25</a></li></ul></aside></li></ul></section></section>
93
93
  <section class="tsd-panel-group tsd-member-group">
94
94
  <h2>Properties</h2>
95
95
  <section class="tsd-panel tsd-member tsd-is-protected"><a id="_pq" class="tsd-anchor"></a>
@@ -97,7 +97,7 @@ type <code>HeapOptions&lt;T&gt;</code>, which is a generic type that represents
97
97
  <div class="tsd-signature"><span class="tsd-kind-property">_pq</span><span class="tsd-signature-symbol">:</span> <a href="PriorityQueue.html" class="tsd-signature-type tsd-kind-class">PriorityQueue</a><span class="tsd-signature-symbol">&lt;</span><a href="HeapItem.html" class="tsd-signature-type tsd-kind-class">HeapItem</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">&gt;</span></div><aside class="tsd-sources">
98
98
  <p>Overrides <a href="Heap.html">Heap</a>.<a href="Heap.html#_pq">_pq</a></p>
99
99
  <ul>
100
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/max-heap.ts#L18">src/data-structures/heap/max-heap.ts:18</a></li></ul></aside></section>
100
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/max-heap.ts#L18">src/data-structures/heap/max-heap.ts:18</a></li></ul></aside></section>
101
101
  <section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><a id="_priorityCb" class="tsd-anchor"></a>
102
102
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagProtected">Protected</code> <span>_priority<wbr/>Cb</span><a href="#_priorityCb" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
103
103
  <div class="tsd-signature"><span class="tsd-kind-property">_priority<wbr/>Cb</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">val</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span></div>
@@ -116,7 +116,7 @@ type <code>HeapOptions&lt;T&gt;</code>, which is a generic type that represents
116
116
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4></li></ul></li></ul></div><aside class="tsd-sources">
117
117
  <p>Inherited from <a href="Heap.html">Heap</a>.<a href="Heap.html#_priorityCb">_priorityCb</a></p>
118
118
  <ul>
119
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L67">src/data-structures/heap/heap.ts:67</a></li></ul></aside></section></section>
119
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L67">src/data-structures/heap/heap.ts:67</a></li></ul></aside></section></section>
120
120
  <section class="tsd-panel-group tsd-member-group">
121
121
  <h2>Accessors</h2>
122
122
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="pq" class="tsd-anchor"></a>
@@ -127,7 +127,7 @@ type <code>HeapOptions&lt;T&gt;</code>, which is a generic type that represents
127
127
  <h4 class="tsd-returns-title">Returns <a href="PriorityQueue.html" class="tsd-signature-type tsd-kind-class">PriorityQueue</a><span class="tsd-signature-symbol">&lt;</span><a href="HeapItem.html" class="tsd-signature-type tsd-kind-class">HeapItem</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
128
128
  <p>Inherited from Heap.pq</p>
129
129
  <ul>
130
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L59">src/data-structures/heap/heap.ts:59</a></li></ul></aside></li>
130
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L59">src/data-structures/heap/heap.ts:59</a></li></ul></aside></li>
131
131
  <li class="tsd-signature" id="pq.pq-2"><span class="tsd-signature-symbol">set</span> pq<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">v</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
132
132
  <li class="tsd-description">
133
133
  <div class="tsd-parameters">
@@ -138,7 +138,7 @@ type <code>HeapOptions&lt;T&gt;</code>, which is a generic type that represents
138
138
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
139
139
  <p>Inherited from Heap.pq</p>
140
140
  <ul>
141
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L63">src/data-structures/heap/heap.ts:63</a></li></ul></aside></li></ul></section>
141
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L63">src/data-structures/heap/heap.ts:63</a></li></ul></aside></li></ul></section>
142
142
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="priorityCb" class="tsd-anchor"></a>
143
143
  <h3 class="tsd-anchor-link"><span>priority<wbr/>Cb</span><a href="#priorityCb" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
144
144
  <ul class="tsd-signatures tsd-is-inherited">
@@ -158,7 +158,7 @@ type <code>HeapOptions&lt;T&gt;</code>, which is a generic type that represents
158
158
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4></li></ul></li></ul><aside class="tsd-sources">
159
159
  <p>Inherited from Heap.priorityCb</p>
160
160
  <ul>
161
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L68">src/data-structures/heap/heap.ts:68</a></li></ul></aside></li>
161
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L68">src/data-structures/heap/heap.ts:68</a></li></ul></aside></li>
162
162
  <li class="tsd-signature" id="priorityCb.priorityCb-2"><span class="tsd-signature-symbol">set</span> priorityCb<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">v</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
163
163
  <li class="tsd-description">
164
164
  <div class="tsd-parameters">
@@ -180,7 +180,7 @@ type <code>HeapOptions&lt;T&gt;</code>, which is a generic type that represents
180
180
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
181
181
  <p>Inherited from Heap.priorityCb</p>
182
182
  <ul>
183
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L72">src/data-structures/heap/heap.ts:72</a></li></ul></aside></li></ul></section>
183
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L72">src/data-structures/heap/heap.ts:72</a></li></ul></aside></li></ul></section>
184
184
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="size" class="tsd-anchor"></a>
185
185
  <h3 class="tsd-anchor-link"><span>size</span><a href="#size" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
186
186
  <ul class="tsd-signatures tsd-is-inherited">
@@ -193,7 +193,7 @@ type <code>HeapOptions&lt;T&gt;</code>, which is a generic type that represents
193
193
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
194
194
  <p>Inherited from Heap.size</p>
195
195
  <ul>
196
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L80">src/data-structures/heap/heap.ts:80</a></li></ul></aside></li></ul></section></section>
196
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L80">src/data-structures/heap/heap.ts:80</a></li></ul></aside></li></ul></section></section>
197
197
  <section class="tsd-panel-group tsd-member-group">
198
198
  <h2>Methods</h2>
199
199
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="add" class="tsd-anchor"></a>
@@ -226,7 +226,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
226
226
  </div><aside class="tsd-sources">
227
227
  <p>Inherited from <a href="Heap.html">Heap</a>.<a href="Heap.html#add">add</a></p>
228
228
  <ul>
229
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L139">src/data-structures/heap/heap.ts:139</a></li></ul></aside></li></ul></section>
229
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L139">src/data-structures/heap/heap.ts:139</a></li></ul></aside></li></ul></section>
230
230
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="clear" class="tsd-anchor"></a>
231
231
  <h3 class="tsd-anchor-link"><span>clear</span><a href="#clear" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
232
232
  <ul class="tsd-signatures tsd-is-inherited">
@@ -238,7 +238,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
238
238
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
239
239
  <p>Inherited from <a href="Heap.html">Heap</a>.<a href="Heap.html#clear">clear</a></p>
240
240
  <ul>
241
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L202">src/data-structures/heap/heap.ts:202</a></li></ul></aside></li></ul></section>
241
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L202">src/data-structures/heap/heap.ts:202</a></li></ul></aside></li></ul></section>
242
242
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="getPq" class="tsd-anchor"></a>
243
243
  <h3 class="tsd-anchor-link"><span>get<wbr/>Pq</span><a href="#getPq" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
244
244
  <ul class="tsd-signatures tsd-is-inherited">
@@ -250,7 +250,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
250
250
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
251
251
  <p>Inherited from <a href="Heap.html">Heap</a>.<a href="Heap.html#getPq">getPq</a></p>
252
252
  <ul>
253
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L87">src/data-structures/heap/heap.ts:87</a></li></ul></aside></li></ul></section>
253
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L87">src/data-structures/heap/heap.ts:87</a></li></ul></aside></li></ul></section>
254
254
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="getPriorityCb" class="tsd-anchor"></a>
255
255
  <h3 class="tsd-anchor-link"><span>get<wbr/>Priority<wbr/>Cb</span><a href="#getPriorityCb" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
256
256
  <ul class="tsd-signatures tsd-is-inherited">
@@ -273,7 +273,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
273
273
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
274
274
  <p>Inherited from <a href="Heap.html">Heap</a>.<a href="Heap.html#getPriorityCb">getPriorityCb</a></p>
275
275
  <ul>
276
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L94">src/data-structures/heap/heap.ts:94</a></li></ul></aside></li></ul></section>
276
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L94">src/data-structures/heap/heap.ts:94</a></li></ul></aside></li></ul></section>
277
277
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="getSize" class="tsd-anchor"></a>
278
278
  <h3 class="tsd-anchor-link"><span>get<wbr/>Size</span><a href="#getSize" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
279
279
  <ul class="tsd-signatures tsd-is-inherited">
@@ -285,7 +285,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
285
285
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
286
286
  <p>Inherited from <a href="Heap.html">Heap</a>.<a href="Heap.html#getSize">getSize</a></p>
287
287
  <ul>
288
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L101">src/data-structures/heap/heap.ts:101</a></li></ul></aside></li></ul></section>
288
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L101">src/data-structures/heap/heap.ts:101</a></li></ul></aside></li></ul></section>
289
289
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="has" class="tsd-anchor"></a>
290
290
  <h3 class="tsd-anchor-link"><span>has</span><a href="#has" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
291
291
  <ul class="tsd-signatures tsd-is-inherited">
@@ -306,7 +306,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
306
306
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
307
307
  <p>Inherited from <a href="Heap.html">Heap</a>.<a href="Heap.html#has">has</a></p>
308
308
  <ul>
309
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L181">src/data-structures/heap/heap.ts:181</a></li></ul></aside></li></ul></section>
309
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L181">src/data-structures/heap/heap.ts:181</a></li></ul></aside></li></ul></section>
310
310
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="isEmpty" class="tsd-anchor"></a>
311
311
  <h3 class="tsd-anchor-link"><span>is<wbr/>Empty</span><a href="#isEmpty" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
312
312
  <ul class="tsd-signatures tsd-is-inherited">
@@ -319,7 +319,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
319
319
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
320
320
  <p>Inherited from <a href="Heap.html">Heap</a>.<a href="Heap.html#isEmpty">isEmpty</a></p>
321
321
  <ul>
322
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L109">src/data-structures/heap/heap.ts:109</a></li></ul></aside></li></ul></section>
322
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L109">src/data-structures/heap/heap.ts:109</a></li></ul></aside></li></ul></section>
323
323
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="peek" class="tsd-anchor"></a>
324
324
  <h3 class="tsd-anchor-link"><span>peek</span><a href="#peek" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
325
325
  <ul class="tsd-signatures tsd-is-inherited">
@@ -332,7 +332,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
332
332
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
333
333
  <p>Inherited from <a href="Heap.html">Heap</a>.<a href="Heap.html#peek">peek</a></p>
334
334
  <ul>
335
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L117">src/data-structures/heap/heap.ts:117</a></li></ul></aside></li></ul></section>
335
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L117">src/data-structures/heap/heap.ts:117</a></li></ul></aside></li></ul></section>
336
336
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="peekLast" class="tsd-anchor"></a>
337
337
  <h3 class="tsd-anchor-link"><span>peek<wbr/>Last</span><a href="#peekLast" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
338
338
  <ul class="tsd-signatures tsd-is-inherited">
@@ -345,7 +345,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
345
345
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
346
346
  <p>Inherited from <a href="Heap.html">Heap</a>.<a href="Heap.html#peekLast">peekLast</a></p>
347
347
  <ul>
348
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L125">src/data-structures/heap/heap.ts:125</a></li></ul></aside></li></ul></section>
348
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L125">src/data-structures/heap/heap.ts:125</a></li></ul></aside></li></ul></section>
349
349
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="poll" class="tsd-anchor"></a>
350
350
  <h3 class="tsd-anchor-link"><span>poll</span><a href="#poll" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
351
351
  <ul class="tsd-signatures tsd-is-inherited">
@@ -358,7 +358,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
358
358
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
359
359
  <p>Inherited from <a href="Heap.html">Heap</a>.<a href="Heap.html#poll">poll</a></p>
360
360
  <ul>
361
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L168">src/data-structures/heap/heap.ts:168</a></li></ul></aside></li></ul></section>
361
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L168">src/data-structures/heap/heap.ts:168</a></li></ul></aside></li></ul></section>
362
362
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="toArray" class="tsd-anchor"></a>
363
363
  <h3 class="tsd-anchor-link"><span>to<wbr/>Array</span><a href="#toArray" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
364
364
  <ul class="tsd-signatures tsd-is-inherited">
@@ -371,7 +371,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
371
371
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
372
372
  <p>Inherited from <a href="Heap.html">Heap</a>.<a href="Heap.html#toArray">toArray</a></p>
373
373
  <ul>
374
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/heap/heap.ts#L195">src/data-structures/heap/heap.ts:195</a></li></ul></aside></li></ul></section></section></div>
374
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L195">src/data-structures/heap/heap.ts:195</a></li></ul></aside></li></ul></section></section></div>
375
375
  <div class="col-sidebar">
376
376
  <div class="page-menu">
377
377
  <div class="tsd-navigation settings">
@@ -453,6 +453,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
453
453
  <li><a href="SegmentTreeNode.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Segment<wbr/>Tree<wbr/>Node</span></a></li>
454
454
  <li><a href="SinglyLinkedList.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Singly<wbr/>Linked<wbr/>List</span></a></li>
455
455
  <li><a href="SinglyLinkedListNode.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Singly<wbr/>Linked<wbr/>List<wbr/>Node</span></a></li>
456
+ <li><a href="SkipLinkedList.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Skip<wbr/>Linked<wbr/>List</span></a></li>
456
457
  <li><a href="SplayTree.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Splay<wbr/>Tree</span></a></li>
457
458
  <li><a href="Stack.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Stack</span></a></li>
458
459
  <li><a href="TreeMultiSet.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Tree<wbr/>Multi<wbr/>Set</span></a></li>
@@ -465,7 +466,6 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
465
466
  <li><a href="UndirectedVertex.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Undirected<wbr/>Vertex</span></a></li>
466
467
  <li><a href="Vector2D.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Vector2D</span></a></li>
467
468
  <li><a href="../interfaces/AVLTreeDeleted.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g></svg><span>AVLTree<wbr/>Deleted</span></a></li>
468
- <li><a href="../interfaces/BinaryTreeNodeObj.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Binary<wbr/>Tree<wbr/>Node<wbr/>Obj</span></a></li>
469
469
  <li><a href="../interfaces/HeapOptions.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Heap<wbr/>Options</span></a></li>
470
470
  <li><a href="../interfaces/IDirectedGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IDirected<wbr/>Graph</span></a></li>
471
471
  <li><a href="../interfaces/IGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IGraph</span></a></li>