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
@@ -28,7 +28,7 @@
28
28
  <li><a href="MinPriorityQueue.html" class="tsd-signature-type tsd-kind-class">MinPriorityQueue</a></li>
29
29
  <li><a href="MaxPriorityQueue.html" class="tsd-signature-type tsd-kind-class">MaxPriorityQueue</a></li></ul></li></ul></section><aside class="tsd-sources">
30
30
  <ul>
31
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L10">src/data-structures/priority-queue/priority-queue.ts:10</a></li></ul></aside>
31
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L10">src/data-structures/priority-queue/priority-queue.ts:10</a></li></ul></aside>
32
32
  <section class="tsd-panel-group tsd-index-group">
33
33
  <section class="tsd-panel tsd-index-panel">
34
34
  <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -102,19 +102,19 @@ function.</p>
102
102
  <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><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4>
103
103
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
104
104
  <ul>
105
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L16">src/data-structures/priority-queue/priority-queue.ts:16</a></li></ul></aside></li></ul></section></section>
105
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L16">src/data-structures/priority-queue/priority-queue.ts:16</a></li></ul></aside></li></ul></section></section>
106
106
  <section class="tsd-panel-group tsd-member-group">
107
107
  <h2>Properties</h2>
108
108
  <section class="tsd-panel tsd-member tsd-is-protected"><a id="_comparator" class="tsd-anchor"></a>
109
109
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagProtected">Protected</code> <code class="tsd-tag ts-flagReadonly">Readonly</code> <span>_comparator</span><a href="#_comparator" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
110
110
  <div class="tsd-signature"><span class="tsd-kind-property">_comparator</span><span class="tsd-signature-symbol">:</span> <a href="../types/PriorityQueueComparator.html" class="tsd-signature-type tsd-kind-type-alias">PriorityQueueComparator</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"> = ...</span></div><aside class="tsd-sources">
111
111
  <ul>
112
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L234">src/data-structures/priority-queue/priority-queue.ts:234</a></li></ul></aside></section>
112
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L234">src/data-structures/priority-queue/priority-queue.ts:234</a></li></ul></aside></section>
113
113
  <section class="tsd-panel tsd-member tsd-is-protected"><a id="_nodes" class="tsd-anchor"></a>
114
114
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagProtected">Protected</code> <span>_nodes</span><a href="#_nodes" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
115
115
  <div class="tsd-signature"><span class="tsd-kind-property">_nodes</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">
116
116
  <ul>
117
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L27">src/data-structures/priority-queue/priority-queue.ts:27</a></li></ul></aside></section></section>
117
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L27">src/data-structures/priority-queue/priority-queue.ts:27</a></li></ul></aside></section></section>
118
118
  <section class="tsd-panel-group tsd-member-group">
119
119
  <h2>Accessors</h2>
120
120
  <section class="tsd-panel tsd-member"><a id="nodes" class="tsd-anchor"></a>
@@ -124,7 +124,7 @@ function.</p>
124
124
  <li class="tsd-description">
125
125
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
126
126
  <ul>
127
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L29">src/data-structures/priority-queue/priority-queue.ts:29</a></li></ul></aside></li>
127
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L29">src/data-structures/priority-queue/priority-queue.ts:29</a></li></ul></aside></li>
128
128
  <li class="tsd-signature" id="nodes.nodes-2"><span class="tsd-signature-symbol">set</span> nodes<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>
129
129
  <li class="tsd-description">
130
130
  <div class="tsd-parameters">
@@ -134,7 +134,7 @@ function.</p>
134
134
  <h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
135
135
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
136
136
  <ul>
137
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L33">src/data-structures/priority-queue/priority-queue.ts:33</a></li></ul></aside></li></ul></section>
137
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L33">src/data-structures/priority-queue/priority-queue.ts:33</a></li></ul></aside></li></ul></section>
138
138
  <section class="tsd-panel tsd-member"><a id="size" class="tsd-anchor"></a>
139
139
  <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>
140
140
  <ul class="tsd-signatures">
@@ -142,7 +142,7 @@ function.</p>
142
142
  <li class="tsd-description">
143
143
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
144
144
  <ul>
145
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L37">src/data-structures/priority-queue/priority-queue.ts:37</a></li></ul></aside></li></ul></section></section>
145
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L37">src/data-structures/priority-queue/priority-queue.ts:37</a></li></ul></aside></li></ul></section></section>
146
146
  <section class="tsd-panel-group tsd-member-group">
147
147
  <h2>Methods</h2>
148
148
  <section class="tsd-panel tsd-member"><a id="DFS" class="tsd-anchor"></a>
@@ -166,7 +166,7 @@ the nodes should be visited during the Depth-First Search (DFS) traversal. It ca
166
166
 
167
167
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
168
168
  <ul>
169
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L205">src/data-structures/priority-queue/priority-queue.ts:205</a></li></ul></aside></li></ul></section>
169
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L205">src/data-structures/priority-queue/priority-queue.ts:205</a></li></ul></aside></li></ul></section>
170
170
  <section class="tsd-panel tsd-member tsd-is-protected"><a id="_compare" class="tsd-anchor"></a>
171
171
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagProtected">Protected</code> <span>_compare</span><a href="#_compare" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
172
172
  <ul class="tsd-signatures tsd-is-protected">
@@ -193,7 +193,7 @@ indicating that the element at index <code>a</code> is greater than the element
193
193
 
194
194
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
195
195
  <ul>
196
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L247">src/data-structures/priority-queue/priority-queue.ts:247</a></li></ul></aside></li></ul></section>
196
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L247">src/data-structures/priority-queue/priority-queue.ts:247</a></li></ul></aside></li></ul></section>
197
197
  <section class="tsd-panel tsd-member tsd-is-protected"><a id="_fix" class="tsd-anchor"></a>
198
198
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagProtected">Protected</code> <span>_fix</span><a href="#_fix" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
199
199
  <ul class="tsd-signatures tsd-is-protected">
@@ -205,7 +205,7 @@ towards the root.</p>
205
205
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
206
206
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
207
207
  <ul>
208
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L349">src/data-structures/priority-queue/priority-queue.ts:349</a></li></ul></aside></li></ul></section>
208
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L349">src/data-structures/priority-queue/priority-queue.ts:349</a></li></ul></aside></li></ul></section>
209
209
  <section class="tsd-panel tsd-member tsd-is-protected"><a id="_getComparedChild" class="tsd-anchor"></a>
210
210
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagProtected">Protected</code> <span>_get<wbr/>Compared<wbr/>Child</span><a href="#_getComparedChild" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
211
211
  <ul class="tsd-signatures tsd-is-protected">
@@ -226,7 +226,7 @@ tree.</p>
226
226
 
227
227
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
228
228
  <ul>
229
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L305">src/data-structures/priority-queue/priority-queue.ts:305</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/priority-queue/priority-queue.ts#L305">src/data-structures/priority-queue/priority-queue.ts:305</a></li></ul></aside></li></ul></section>
230
230
  <section class="tsd-panel tsd-member tsd-is-protected"><a id="_getLeft" class="tsd-anchor"></a>
231
231
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagProtected">Protected</code> <span>_get<wbr/>Left</span><a href="#_getLeft" 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-protected">
@@ -246,7 +246,7 @@ tree.</p>
246
246
 
247
247
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
248
248
  <ul>
249
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L286">src/data-structures/priority-queue/priority-queue.ts:286</a></li></ul></aside></li></ul></section>
249
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L286">src/data-structures/priority-queue/priority-queue.ts:286</a></li></ul></aside></li></ul></section>
250
250
  <section class="tsd-panel tsd-member tsd-is-protected"><a id="_getParent" class="tsd-anchor"></a>
251
251
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagProtected">Protected</code> <span>_get<wbr/>Parent</span><a href="#_getParent" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
252
252
  <ul class="tsd-signatures tsd-is-protected">
@@ -266,7 +266,7 @@ tree.</p>
266
266
 
267
267
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
268
268
  <ul>
269
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L277">src/data-structures/priority-queue/priority-queue.ts:277</a></li></ul></aside></li></ul></section>
269
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L277">src/data-structures/priority-queue/priority-queue.ts:277</a></li></ul></aside></li></ul></section>
270
270
  <section class="tsd-panel tsd-member tsd-is-protected"><a id="_getRight" class="tsd-anchor"></a>
271
271
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagProtected">Protected</code> <span>_get<wbr/>Right</span><a href="#_getRight" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
272
272
  <ul class="tsd-signatures tsd-is-protected">
@@ -286,7 +286,7 @@ tree.</p>
286
286
 
287
287
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
288
288
  <ul>
289
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L295">src/data-structures/priority-queue/priority-queue.ts:295</a></li></ul></aside></li></ul></section>
289
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L295">src/data-structures/priority-queue/priority-queue.ts:295</a></li></ul></aside></li></ul></section>
290
290
  <section class="tsd-panel tsd-member tsd-is-protected"><a id="_heapifyDown" class="tsd-anchor"></a>
291
291
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagProtected">Protected</code> <span>_heapify<wbr/>Down</span><a href="#_heapifyDown" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
292
292
  <ul class="tsd-signatures tsd-is-protected">
@@ -306,7 +306,7 @@ operation should start.</p>
306
306
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
307
307
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
308
308
  <ul>
309
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L336">src/data-structures/priority-queue/priority-queue.ts:336</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/priority-queue/priority-queue.ts#L336">src/data-structures/priority-queue/priority-queue.ts:336</a></li></ul></aside></li></ul></section>
310
310
  <section class="tsd-panel tsd-member tsd-is-protected"><a id="_heapifyUp" class="tsd-anchor"></a>
311
311
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagProtected">Protected</code> <span>_heapify<wbr/>Up</span><a href="#_heapifyUp" 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-protected">
@@ -326,7 +326,7 @@ correct position.</p>
326
326
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
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/priority-queue/priority-queue.ts#L323">src/data-structures/priority-queue/priority-queue.ts:323</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/priority-queue/priority-queue.ts#L323">src/data-structures/priority-queue/priority-queue.ts:323</a></li></ul></aside></li></ul></section>
330
330
  <section class="tsd-panel tsd-member tsd-is-protected"><a id="_isValidIndex" class="tsd-anchor"></a>
331
331
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagProtected">Protected</code> <span>_is<wbr/>Valid<wbr/>Index</span><a href="#_isValidIndex" 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 tsd-is-protected">
@@ -347,7 +347,7 @@ checked for validity.</p>
347
347
 
348
348
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
349
349
  <ul>
350
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L268">src/data-structures/priority-queue/priority-queue.ts:268</a></li></ul></aside></li></ul></section>
350
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L268">src/data-structures/priority-queue/priority-queue.ts:268</a></li></ul></aside></li></ul></section>
351
351
  <section class="tsd-panel tsd-member tsd-is-protected"><a id="_swap" class="tsd-anchor"></a>
352
352
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagProtected">Protected</code> <span>_swap</span><a href="#_swap" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
353
353
  <ul class="tsd-signatures tsd-is-protected">
@@ -371,7 +371,7 @@ checked for validity.</p>
371
371
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
372
372
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
373
373
  <ul>
374
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L256">src/data-structures/priority-queue/priority-queue.ts:256</a></li></ul></aside></li></ul></section>
374
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L256">src/data-structures/priority-queue/priority-queue.ts:256</a></li></ul></aside></li></ul></section>
375
375
  <section class="tsd-panel tsd-member"><a id="add" class="tsd-anchor"></a>
376
376
  <h3 class="tsd-anchor-link"><span>add</span><a href="#add" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
377
377
  <ul class="tsd-signatures">
@@ -391,7 +391,7 @@ that needs to be added to the heap.</p>
391
391
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
392
392
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
393
393
  <ul>
394
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L77">src/data-structures/priority-queue/priority-queue.ts:77</a></li></ul></aside></li></ul></section>
394
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L77">src/data-structures/priority-queue/priority-queue.ts:77</a></li></ul></aside></li></ul></section>
395
395
  <section class="tsd-panel tsd-member"><a id="clear" class="tsd-anchor"></a>
396
396
  <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>
397
397
  <ul class="tsd-signatures">
@@ -402,7 +402,7 @@ that needs to be added to the heap.</p>
402
402
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
403
403
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
404
404
  <ul>
405
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L139">src/data-structures/priority-queue/priority-queue.ts:139</a></li></ul></aside></li></ul></section>
405
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L139">src/data-structures/priority-queue/priority-queue.ts:139</a></li></ul></aside></li></ul></section>
406
406
  <section class="tsd-panel tsd-member"><a id="clone" class="tsd-anchor"></a>
407
407
  <h3 class="tsd-anchor-link"><span>clone</span><a href="#clone" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
408
408
  <ul class="tsd-signatures">
@@ -416,7 +416,7 @@ original instance.</p>
416
416
 
417
417
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
418
418
  <ul>
419
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L157">src/data-structures/priority-queue/priority-queue.ts:157</a></li></ul></aside></li></ul></section>
419
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L157">src/data-structures/priority-queue/priority-queue.ts:157</a></li></ul></aside></li></ul></section>
420
420
  <section class="tsd-panel tsd-member"><a id="getNodes" class="tsd-anchor"></a>
421
421
  <h3 class="tsd-anchor-link"><span>get<wbr/>Nodes</span><a href="#getNodes" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
422
422
  <ul class="tsd-signatures">
@@ -427,7 +427,7 @@ original instance.</p>
427
427
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">[]</span></h4>
428
428
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
429
429
  <ul>
430
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L68">src/data-structures/priority-queue/priority-queue.ts:68</a></li></ul></aside></li></ul></section>
430
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L68">src/data-structures/priority-queue/priority-queue.ts:68</a></li></ul></aside></li></ul></section>
431
431
  <section class="tsd-panel tsd-member"><a id="has" class="tsd-anchor"></a>
432
432
  <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>
433
433
  <ul class="tsd-signatures">
@@ -448,7 +448,7 @@ we want to check if it exists in the <code>nodes</code> array.</p>
448
448
 
449
449
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
450
450
  <ul>
451
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L88">src/data-structures/priority-queue/priority-queue.ts:88</a></li></ul></aside></li></ul></section>
451
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L88">src/data-structures/priority-queue/priority-queue.ts:88</a></li></ul></aside></li></ul></section>
452
452
  <section class="tsd-panel tsd-member"><a id="isEmpty" class="tsd-anchor"></a>
453
453
  <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>
454
454
  <ul class="tsd-signatures">
@@ -462,7 +462,7 @@ object is empty or not.</p>
462
462
 
463
463
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
464
464
  <ul>
465
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L132">src/data-structures/priority-queue/priority-queue.ts:132</a></li></ul></aside></li></ul></section>
465
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L132">src/data-structures/priority-queue/priority-queue.ts:132</a></li></ul></aside></li></ul></section>
466
466
  <section class="tsd-panel tsd-member"><a id="isValid" class="tsd-anchor"></a>
467
467
  <h3 class="tsd-anchor-link"><span>is<wbr/>Valid</span><a href="#isValid" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
468
468
  <ul class="tsd-signatures">
@@ -474,7 +474,7 @@ object is empty or not.</p>
474
474
 
475
475
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
476
476
  <ul>
477
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L166">src/data-structures/priority-queue/priority-queue.ts:166</a></li></ul></aside></li></ul></section>
477
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L166">src/data-structures/priority-queue/priority-queue.ts:166</a></li></ul></aside></li></ul></section>
478
478
  <section class="tsd-panel tsd-member"><a id="leaf" class="tsd-anchor"></a>
479
479
  <h3 class="tsd-anchor-link"><span>leaf</span><a href="#leaf" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
480
480
  <ul class="tsd-signatures">
@@ -487,7 +487,7 @@ empty or the last element is <code>null</code>, then it returns <code>null</code
487
487
 
488
488
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
489
489
  <ul>
490
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L122">src/data-structures/priority-queue/priority-queue.ts:122</a></li></ul></aside></li></ul></section>
490
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L122">src/data-structures/priority-queue/priority-queue.ts:122</a></li></ul></aside></li></ul></section>
491
491
  <section class="tsd-panel tsd-member"><a id="peek" class="tsd-anchor"></a>
492
492
  <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>
493
493
  <ul class="tsd-signatures">
@@ -500,7 +500,7 @@ Otherwise, it returns <code>null</code>.</p>
500
500
 
501
501
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
502
502
  <ul>
503
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L97">src/data-structures/priority-queue/priority-queue.ts:97</a></li></ul></aside></li></ul></section>
503
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L97">src/data-structures/priority-queue/priority-queue.ts:97</a></li></ul></aside></li></ul></section>
504
504
  <section class="tsd-panel tsd-member"><a id="poll" class="tsd-anchor"></a>
505
505
  <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>
506
506
  <ul class="tsd-signatures">
@@ -512,7 +512,7 @@ Otherwise, it returns <code>null</code>.</p>
512
512
 
513
513
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
514
514
  <ul>
515
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L105">src/data-structures/priority-queue/priority-queue.ts:105</a></li></ul></aside></li></ul></section>
515
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L105">src/data-structures/priority-queue/priority-queue.ts:105</a></li></ul></aside></li></ul></section>
516
516
  <section class="tsd-panel tsd-member"><a id="sort" class="tsd-anchor"></a>
517
517
  <h3 class="tsd-anchor-link"><span>sort</span><a href="#sort" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
518
518
  <ul class="tsd-signatures">
@@ -525,7 +525,7 @@ Plan to support sorting of duplicate elements.</p>
525
525
 
526
526
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
527
527
  <ul>
528
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L188">src/data-structures/priority-queue/priority-queue.ts:188</a></li></ul></aside></li></ul></section>
528
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L188">src/data-structures/priority-queue/priority-queue.ts:188</a></li></ul></aside></li></ul></section>
529
529
  <section class="tsd-panel tsd-member"><a id="toArray" class="tsd-anchor"></a>
530
530
  <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>
531
531
  <ul class="tsd-signatures">
@@ -537,7 +537,7 @@ Plan to support sorting of duplicate elements.</p>
537
537
 
538
538
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
539
539
  <ul>
540
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L147">src/data-structures/priority-queue/priority-queue.ts:147</a></li></ul></aside></li></ul></section>
540
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L147">src/data-structures/priority-queue/priority-queue.ts:147</a></li></ul></aside></li></ul></section>
541
541
  <section class="tsd-panel tsd-member"><a id="heapify" class="tsd-anchor"></a>
542
542
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>heapify</span><a href="#heapify" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
543
543
  <ul class="tsd-signatures">
@@ -564,7 +564,7 @@ the priority queue, and &quot;initialValues&quot; which is an array of initial v
564
564
 
565
565
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
566
566
  <ul>
567
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L48">src/data-structures/priority-queue/priority-queue.ts:48</a></li></ul></aside></li></ul></section>
567
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L48">src/data-structures/priority-queue/priority-queue.ts:48</a></li></ul></aside></li></ul></section>
568
568
  <section class="tsd-panel tsd-member"><a id="isPriorityQueueified" class="tsd-anchor"></a>
569
569
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>is<wbr/>Priority<wbr/>Queueified</span><a href="#isPriorityQueueified" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
570
570
  <ul class="tsd-signatures">
@@ -591,7 +591,7 @@ following properties:</p>
591
591
 
592
592
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
593
593
  <ul>
594
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/priority-queue/priority-queue.ts#L61">src/data-structures/priority-queue/priority-queue.ts:61</a></li></ul></aside></li></ul></section></section></div>
594
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/priority-queue/priority-queue.ts#L61">src/data-structures/priority-queue/priority-queue.ts:61</a></li></ul></aside></li></ul></section></section></div>
595
595
  <div class="col-sidebar">
596
596
  <div class="page-menu">
597
597
  <div class="tsd-navigation settings">
@@ -686,6 +686,7 @@ following properties:</p>
686
686
  <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>
687
687
  <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>
688
688
  <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>
689
+ <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>
689
690
  <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>
690
691
  <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>
691
692
  <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>
@@ -698,7 +699,6 @@ following properties:</p>
698
699
  <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>
699
700
  <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>
700
701
  <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>
701
- <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>
702
702
  <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>
703
703
  <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>
704
704
  <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>
@@ -31,7 +31,7 @@
31
31
  <ul class="tsd-hierarchy">
32
32
  <li><span class="target">Queue</span></li></ul></section><aside class="tsd-sources">
33
33
  <ul>
34
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/queue/queue.ts#L6">src/data-structures/queue/queue.ts:6</a></li></ul></aside>
34
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/queue/queue.ts#L6">src/data-structures/queue/queue.ts:6</a></li></ul></aside>
35
35
  <section class="tsd-panel-group tsd-index-group">
36
36
  <section class="tsd-panel tsd-index-panel">
37
37
  <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -86,19 +86,19 @@ initialized as an empty array.</p>
86
86
  <h4 class="tsd-returns-title">Returns <a href="Queue.html" class="tsd-signature-type tsd-kind-class">Queue</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/queue/queue.ts#L16">src/data-structures/queue/queue.ts:16</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/queue/queue.ts#L16">src/data-structures/queue/queue.ts:16</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-protected"><a id="_nodes" class="tsd-anchor"></a>
93
93
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagProtected">Protected</code> <span>_nodes</span><a href="#_nodes" 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">_nodes</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type tsd-kind-type-parameter">T</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/queue/queue.ts#L7">src/data-structures/queue/queue.ts:7</a></li></ul></aside></section>
96
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/queue/queue.ts#L7">src/data-structures/queue/queue.ts:7</a></li></ul></aside></section>
97
97
  <section class="tsd-panel tsd-member tsd-is-protected"><a id="_offset" class="tsd-anchor"></a>
98
98
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagProtected">Protected</code> <span>_offset</span><a href="#_offset" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
99
99
  <div class="tsd-signature"><span class="tsd-kind-property">_offset</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><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/queue/queue.ts#L8">src/data-structures/queue/queue.ts:8</a></li></ul></aside></section></section>
101
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/queue/queue.ts#L8">src/data-structures/queue/queue.ts:8</a></li></ul></aside></section></section>
102
102
  <section class="tsd-panel-group tsd-member-group">
103
103
  <h2>Methods</h2>
104
104
  <section class="tsd-panel tsd-member"><a id="add" class="tsd-anchor"></a>
@@ -120,7 +120,7 @@ initialized as an empty array.</p>
120
120
 
121
121
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
122
122
  <ul>
123
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/queue/queue.ts#L38">src/data-structures/queue/queue.ts:38</a></li></ul></aside></li></ul></section>
123
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/queue/queue.ts#L38">src/data-structures/queue/queue.ts:38</a></li></ul></aside></li></ul></section>
124
124
  <section class="tsd-panel tsd-member"><a id="clear" class="tsd-anchor"></a>
125
125
  <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>
126
126
  <ul class="tsd-signatures">
@@ -131,7 +131,7 @@ initialized as an empty array.</p>
131
131
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
132
132
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
133
133
  <ul>
134
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/queue/queue.ts#L108">src/data-structures/queue/queue.ts:108</a></li></ul></aside></li></ul></section>
134
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/queue/queue.ts#L108">src/data-structures/queue/queue.ts:108</a></li></ul></aside></li></ul></section>
135
135
  <section class="tsd-panel tsd-member"><a id="clone" class="tsd-anchor"></a>
136
136
  <h3 class="tsd-anchor-link"><span>clone</span><a href="#clone" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
137
137
  <ul class="tsd-signatures">
@@ -143,7 +143,7 @@ initialized as an empty array.</p>
143
143
 
144
144
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
145
145
  <ul>
146
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/queue/queue.ts#L117">src/data-structures/queue/queue.ts:117</a></li></ul></aside></li></ul></section>
146
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/queue/queue.ts#L117">src/data-structures/queue/queue.ts:117</a></li></ul></aside></li></ul></section>
147
147
  <section class="tsd-panel tsd-member"><a id="isEmpty" class="tsd-anchor"></a>
148
148
  <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>
149
149
  <ul class="tsd-signatures">
@@ -155,7 +155,7 @@ initialized as an empty array.</p>
155
155
 
156
156
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
157
157
  <ul>
158
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/queue/queue.ts#L93">src/data-structures/queue/queue.ts:93</a></li></ul></aside></li></ul></section>
158
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/queue/queue.ts#L93">src/data-structures/queue/queue.ts:93</a></li></ul></aside></li></ul></section>
159
159
  <section class="tsd-panel tsd-member"><a id="peek" class="tsd-anchor"></a>
160
160
  <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>
161
161
  <ul class="tsd-signatures">
@@ -168,7 +168,7 @@ the <code>_offset</code> index. If the data structure is empty (size is 0), it r
168
168
 
169
169
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
170
170
  <ul>
171
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/queue/queue.ts#L68">src/data-structures/queue/queue.ts:68</a></li></ul></aside></li></ul></section>
171
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/queue/queue.ts#L68">src/data-structures/queue/queue.ts:68</a></li></ul></aside></li></ul></section>
172
172
  <section class="tsd-panel tsd-member"><a id="peekLast" class="tsd-anchor"></a>
173
173
  <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>
174
174
  <ul class="tsd-signatures">
@@ -181,7 +181,7 @@ array is empty, it returns <code>null</code>.</p>
181
181
 
182
182
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
183
183
  <ul>
184
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/queue/queue.ts#L77">src/data-structures/queue/queue.ts:77</a></li></ul></aside></li></ul></section>
184
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/queue/queue.ts#L77">src/data-structures/queue/queue.ts:77</a></li></ul></aside></li></ul></section>
185
185
  <section class="tsd-panel tsd-member"><a id="poll" class="tsd-anchor"></a>
186
186
  <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>
187
187
  <ul class="tsd-signatures">
@@ -194,7 +194,7 @@ necessary to optimize performance.</p>
194
194
 
195
195
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
196
196
  <ul>
197
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/queue/queue.ts#L48">src/data-structures/queue/queue.ts:48</a></li></ul></aside></li></ul></section>
197
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/queue/queue.ts#L48">src/data-structures/queue/queue.ts:48</a></li></ul></aside></li></ul></section>
198
198
  <section class="tsd-panel tsd-member"><a id="size" class="tsd-anchor"></a>
199
199
  <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>
200
200
  <ul class="tsd-signatures">
@@ -206,7 +206,7 @@ necessary to optimize performance.</p>
206
206
 
207
207
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
208
208
  <ul>
209
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/queue/queue.ts#L85">src/data-structures/queue/queue.ts:85</a></li></ul></aside></li></ul></section>
209
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/queue/queue.ts#L85">src/data-structures/queue/queue.ts:85</a></li></ul></aside></li></ul></section>
210
210
  <section class="tsd-panel tsd-member"><a id="toArray" class="tsd-anchor"></a>
211
211
  <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>
212
212
  <ul class="tsd-signatures">
@@ -218,7 +218,7 @@ necessary to optimize performance.</p>
218
218
 
219
219
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
220
220
  <ul>
221
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/queue/queue.ts#L101">src/data-structures/queue/queue.ts:101</a></li></ul></aside></li></ul></section>
221
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/queue/queue.ts#L101">src/data-structures/queue/queue.ts:101</a></li></ul></aside></li></ul></section>
222
222
  <section class="tsd-panel tsd-member"><a id="fromArray" class="tsd-anchor"></a>
223
223
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>from<wbr/>Array</span><a href="#fromArray" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
224
224
  <ul class="tsd-signatures">
@@ -245,7 +245,7 @@ array.</p>
245
245
  <div class="tsd-comment tsd-typography">
246
246
  <h4>Static</h4></div><aside class="tsd-sources">
247
247
  <ul>
248
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/queue/queue.ts#L29">src/data-structures/queue/queue.ts:29</a></li></ul></aside></li></ul></section></section></div>
248
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/queue/queue.ts#L29">src/data-structures/queue/queue.ts:29</a></li></ul></aside></li></ul></section></section></div>
249
249
  <div class="col-sidebar">
250
250
  <div class="page-menu">
251
251
  <div class="tsd-navigation settings">
@@ -323,6 +323,7 @@ array.</p>
323
323
  <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>
324
324
  <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>
325
325
  <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>
326
+ <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>
326
327
  <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>
327
328
  <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>
328
329
  <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>
@@ -335,7 +336,6 @@ array.</p>
335
336
  <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>
336
337
  <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>
337
338
  <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>
338
- <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>
339
339
  <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>
340
340
  <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>
341
341
  <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">RBTree</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/binary-tree/rb-tree.ts#L1">src/data-structures/binary-tree/rb-tree.ts:1</a></li></ul></aside>
23
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/binary-tree/rb-tree.ts#L1">src/data-structures/binary-tree/rb-tree.ts:1</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">
@@ -103,6 +103,7 @@
103
103
  <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>
104
104
  <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>
105
105
  <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>
106
+ <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>
106
107
  <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>
107
108
  <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>
108
109
  <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>
@@ -115,7 +116,6 @@
115
116
  <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>
116
117
  <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>
117
118
  <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>
118
- <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>
119
119
  <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>
120
120
  <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>
121
121
  <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>