data-structure-typed 1.17.0 → 1.17.4

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 (98) hide show
  1. package/README.md +9 -0
  2. package/dist/data-structures/linked-list/doubly-linked-list.d.ts +7 -26
  3. package/dist/data-structures/linked-list/doubly-linked-list.js +59 -40
  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 +7 -29
  7. package/dist/data-structures/linked-list/singly-linked-list.js +42 -26
  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/docs/assets/search.js +1 -1
  12. package/docs/classes/AVLTree.html +94 -93
  13. package/docs/classes/AVLTreeNode.html +37 -36
  14. package/docs/classes/AaTree.html +2 -1
  15. package/docs/classes/AbstractEdge.html +12 -11
  16. package/docs/classes/AbstractGraph.html +30 -29
  17. package/docs/classes/AbstractVertex.html +7 -6
  18. package/docs/classes/ArrayDeque.html +15 -14
  19. package/docs/classes/BST.html +87 -86
  20. package/docs/classes/BSTNode.html +37 -36
  21. package/docs/classes/BTree.html +2 -1
  22. package/docs/classes/BinaryIndexedTree.html +8 -7
  23. package/docs/classes/BinaryTree.html +83 -82
  24. package/docs/classes/BinaryTreeNode.html +37 -36
  25. package/docs/classes/Character.html +5 -4
  26. package/docs/classes/CoordinateMap.html +11 -10
  27. package/docs/classes/CoordinateSet.html +10 -9
  28. package/docs/classes/Deque.html +145 -67
  29. package/docs/classes/DirectedEdge.html +18 -17
  30. package/docs/classes/DirectedGraph.html +42 -41
  31. package/docs/classes/DirectedVertex.html +7 -6
  32. package/docs/classes/DoublyLinkedList.html +143 -68
  33. package/docs/classes/DoublyLinkedListNode.html +12 -11
  34. package/docs/classes/Heap.html +21 -20
  35. package/docs/classes/HeapItem.html +9 -8
  36. package/docs/classes/Matrix2D.html +17 -16
  37. package/docs/classes/MatrixNTI2D.html +5 -4
  38. package/docs/classes/MaxHeap.html +21 -20
  39. package/docs/classes/MaxPriorityQueue.html +35 -34
  40. package/docs/classes/MinHeap.html +21 -20
  41. package/docs/classes/MinPriorityQueue.html +35 -34
  42. package/docs/classes/Navigator.html +11 -10
  43. package/docs/classes/ObjectDeque.html +26 -25
  44. package/docs/classes/PriorityQueue.html +33 -32
  45. package/docs/classes/Queue.html +15 -14
  46. package/docs/classes/RBTree.html +2 -1
  47. package/docs/classes/SegmentTree.html +13 -12
  48. package/docs/classes/SegmentTreeNode.html +27 -26
  49. package/docs/classes/SinglyLinkedList.html +128 -70
  50. package/docs/classes/SinglyLinkedListNode.html +9 -8
  51. package/docs/classes/SkipLinkedList.html +150 -0
  52. package/docs/classes/SplayTree.html +2 -1
  53. package/docs/classes/Stack.html +13 -12
  54. package/docs/classes/TreeMultiSet.html +87 -86
  55. package/docs/classes/TreeNode.html +9 -8
  56. package/docs/classes/Trie.html +14 -13
  57. package/docs/classes/TrieNode.html +12 -11
  58. package/docs/classes/TwoThreeTree.html +2 -1
  59. package/docs/classes/UndirectedEdge.html +14 -13
  60. package/docs/classes/UndirectedGraph.html +36 -35
  61. package/docs/classes/UndirectedVertex.html +7 -6
  62. package/docs/classes/Vector2D.html +29 -28
  63. package/docs/enums/CP.html +5 -4
  64. package/docs/enums/FamilyPosition.html +5 -4
  65. package/docs/enums/LoopType.html +4 -3
  66. package/docs/index.html +1 -0
  67. package/docs/interfaces/AVLTreeDeleted.html +4 -3
  68. package/docs/interfaces/HeapOptions.html +3 -2
  69. package/docs/interfaces/IDirectedGraph.html +8 -7
  70. package/docs/interfaces/IGraph.html +20 -19
  71. package/docs/interfaces/NavigatorParams.html +6 -5
  72. package/docs/interfaces/PriorityQueueOptions.html +5 -4
  73. package/docs/modules.html +2 -0
  74. package/docs/types/BSTComparator.html +2 -1
  75. package/docs/types/BSTDeletedResult.html +2 -1
  76. package/docs/types/BinaryTreeDeleted.html +2 -1
  77. package/docs/types/BinaryTreeNodeId.html +2 -1
  78. package/docs/types/BinaryTreeNodePropertyName.html +2 -1
  79. package/docs/types/DFSOrderPattern.html +2 -1
  80. package/docs/types/DijkstraResult.html +2 -1
  81. package/docs/types/Direction.html +2 -1
  82. package/docs/types/DoublyLinkedListGetBy.html +2 -1
  83. package/docs/types/NodeOrPropertyName.html +2 -1
  84. package/docs/types/PriorityQueueComparator.html +2 -1
  85. package/docs/types/PriorityQueueDFSOrderPattern.html +2 -1
  86. package/docs/types/ResultByProperty.html +2 -1
  87. package/docs/types/ResultsByProperty.html +2 -1
  88. package/docs/types/SegmentTreeNodeVal.html +2 -1
  89. package/docs/types/SpecifyOptional.html +2 -1
  90. package/docs/types/Thunk.html +2 -1
  91. package/docs/types/ToThunkFn.html +2 -1
  92. package/docs/types/TopologicalStatus.html +2 -1
  93. package/docs/types/TreeMultiSetDeletedResult.html +2 -1
  94. package/docs/types/TrlAsyncFn.html +2 -1
  95. package/docs/types/TrlFn.html +2 -1
  96. package/docs/types/Turning.html +2 -1
  97. package/docs/types/VertexId.html +2 -1
  98. package/package.json +1 -1
@@ -35,7 +35,7 @@
35
35
  <ul class="tsd-hierarchy">
36
36
  <li><span class="target">DoublyLinkedListNode</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/dcec645/src/data-structures/linked-list/doubly-linked-list.ts#L8">src/data-structures/linked-list/doubly-linked-list.ts:8</a></li></ul></aside>
38
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/linked-list/doubly-linked-list.ts#L8">src/data-structures/linked-list/doubly-linked-list.ts:8</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">
@@ -83,24 +83,24 @@ is defined as a generic type &quot;T&quot;.</p>
83
83
  <h4 class="tsd-returns-title">Returns <a href="DoublyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">DoublyLinkedListNode</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>
84
84
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
85
85
  <ul>
86
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/linked-list/doubly-linked-list.ts#L15">src/data-structures/linked-list/doubly-linked-list.ts:15</a></li></ul></aside></li></ul></section></section>
86
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/linked-list/doubly-linked-list.ts#L15">src/data-structures/linked-list/doubly-linked-list.ts:15</a></li></ul></aside></li></ul></section></section>
87
87
  <section class="tsd-panel-group tsd-member-group">
88
88
  <h2>Properties</h2>
89
89
  <section class="tsd-panel tsd-member tsd-is-private"><a id="_next" class="tsd-anchor"></a>
90
90
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_next</span><a href="#_next" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
91
91
  <div class="tsd-signature"><span class="tsd-kind-property">_next</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="DoublyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">DoublyLinkedListNode</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></div><aside class="tsd-sources">
92
92
  <ul>
93
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/linked-list/doubly-linked-list.ts#L31">src/data-structures/linked-list/doubly-linked-list.ts:31</a></li></ul></aside></section>
93
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/linked-list/doubly-linked-list.ts#L31">src/data-structures/linked-list/doubly-linked-list.ts:31</a></li></ul></aside></section>
94
94
  <section class="tsd-panel tsd-member tsd-is-private"><a id="_prev" class="tsd-anchor"></a>
95
95
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_prev</span><a href="#_prev" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
96
96
  <div class="tsd-signature"><span class="tsd-kind-property">_prev</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="DoublyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">DoublyLinkedListNode</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></div><aside class="tsd-sources">
97
97
  <ul>
98
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/linked-list/doubly-linked-list.ts#L41">src/data-structures/linked-list/doubly-linked-list.ts:41</a></li></ul></aside></section>
98
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/linked-list/doubly-linked-list.ts#L41">src/data-structures/linked-list/doubly-linked-list.ts:41</a></li></ul></aside></section>
99
99
  <section class="tsd-panel tsd-member tsd-is-private"><a id="_val" class="tsd-anchor"></a>
100
100
  <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>
101
101
  <div class="tsd-signature"><span class="tsd-kind-property">_val</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type tsd-kind-type-parameter">T</span></div><aside class="tsd-sources">
102
102
  <ul>
103
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/linked-list/doubly-linked-list.ts#L21">src/data-structures/linked-list/doubly-linked-list.ts:21</a></li></ul></aside></section></section>
103
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/linked-list/doubly-linked-list.ts#L21">src/data-structures/linked-list/doubly-linked-list.ts:21</a></li></ul></aside></section></section>
104
104
  <section class="tsd-panel-group tsd-member-group">
105
105
  <h2>Accessors</h2>
106
106
  <section class="tsd-panel tsd-member"><a id="next" class="tsd-anchor"></a>
@@ -110,7 +110,7 @@ is defined as a generic type &quot;T&quot;.</p>
110
110
  <li class="tsd-description">
111
111
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="DoublyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">DoublyLinkedListNode</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">
112
112
  <ul>
113
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/linked-list/doubly-linked-list.ts#L33">src/data-structures/linked-list/doubly-linked-list.ts:33</a></li></ul></aside></li>
113
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/linked-list/doubly-linked-list.ts#L33">src/data-structures/linked-list/doubly-linked-list.ts:33</a></li></ul></aside></li>
114
114
  <li class="tsd-signature" id="next.next-2"><span class="tsd-signature-symbol">set</span> next<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>
115
115
  <li class="tsd-description">
116
116
  <div class="tsd-parameters">
@@ -120,7 +120,7 @@ is defined as a generic type &quot;T&quot;.</p>
120
120
  <h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="DoublyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">DoublyLinkedListNode</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></h5></li></ul></div>
121
121
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
122
122
  <ul>
123
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/linked-list/doubly-linked-list.ts#L37">src/data-structures/linked-list/doubly-linked-list.ts:37</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/linked-list/doubly-linked-list.ts#L37">src/data-structures/linked-list/doubly-linked-list.ts:37</a></li></ul></aside></li></ul></section>
124
124
  <section class="tsd-panel tsd-member"><a id="prev" class="tsd-anchor"></a>
125
125
  <h3 class="tsd-anchor-link"><span>prev</span><a href="#prev" 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">
@@ -128,7 +128,7 @@ is defined as a generic type &quot;T&quot;.</p>
128
128
  <li class="tsd-description">
129
129
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="DoublyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">DoublyLinkedListNode</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">
130
130
  <ul>
131
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/linked-list/doubly-linked-list.ts#L43">src/data-structures/linked-list/doubly-linked-list.ts:43</a></li></ul></aside></li>
131
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/linked-list/doubly-linked-list.ts#L43">src/data-structures/linked-list/doubly-linked-list.ts:43</a></li></ul></aside></li>
132
132
  <li class="tsd-signature" id="prev.prev-2"><span class="tsd-signature-symbol">set</span> prev<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>
133
133
  <li class="tsd-description">
134
134
  <div class="tsd-parameters">
@@ -138,7 +138,7 @@ is defined as a generic type &quot;T&quot;.</p>
138
138
  <h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="DoublyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">DoublyLinkedListNode</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></h5></li></ul></div>
139
139
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
140
140
  <ul>
141
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/linked-list/doubly-linked-list.ts#L47">src/data-structures/linked-list/doubly-linked-list.ts:47</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/linked-list/doubly-linked-list.ts#L47">src/data-structures/linked-list/doubly-linked-list.ts:47</a></li></ul></aside></li></ul></section>
142
142
  <section class="tsd-panel tsd-member"><a id="val" class="tsd-anchor"></a>
143
143
  <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>
144
144
  <ul class="tsd-signatures">
@@ -146,7 +146,7 @@ is defined as a generic type &quot;T&quot;.</p>
146
146
  <li class="tsd-description">
147
147
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type tsd-kind-type-parameter">T</span></h4><aside class="tsd-sources">
148
148
  <ul>
149
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/linked-list/doubly-linked-list.ts#L23">src/data-structures/linked-list/doubly-linked-list.ts:23</a></li></ul></aside></li>
149
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/linked-list/doubly-linked-list.ts#L23">src/data-structures/linked-list/doubly-linked-list.ts:23</a></li></ul></aside></li>
150
150
  <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>
151
151
  <li class="tsd-description">
152
152
  <div class="tsd-parameters">
@@ -156,7 +156,7 @@ is defined as a generic type &quot;T&quot;.</p>
156
156
  <h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type tsd-kind-type-parameter">T</span></h5></li></ul></div>
157
157
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
158
158
  <ul>
159
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/linked-list/doubly-linked-list.ts#L27">src/data-structures/linked-list/doubly-linked-list.ts:27</a></li></ul></aside></li></ul></section></section></div>
159
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/linked-list/doubly-linked-list.ts#L27">src/data-structures/linked-list/doubly-linked-list.ts:27</a></li></ul></aside></li></ul></section></section></div>
160
160
  <div class="col-sidebar">
161
161
  <div class="page-menu">
162
162
  <div class="tsd-navigation settings">
@@ -228,6 +228,7 @@ is defined as a generic type &quot;T&quot;.</p>
228
228
  <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>
229
229
  <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>
230
230
  <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>
231
+ <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>
231
232
  <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>
232
233
  <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>
233
234
  <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>
@@ -28,7 +28,7 @@
28
28
  <li><a href="MaxHeap.html" class="tsd-signature-type tsd-kind-class">MaxHeap</a></li>
29
29
  <li><a href="MinHeap.html" class="tsd-signature-type tsd-kind-class">MinHeap</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/dcec645/src/data-structures/heap/heap.ts#L39">src/data-structures/heap/heap.ts:39</a></li></ul></aside>
31
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L39">src/data-structures/heap/heap.ts:39</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">
@@ -89,14 +89,14 @@ options provided.</p>
89
89
  <h4 class="tsd-returns-title">Returns <a href="Heap.html" class="tsd-signature-type tsd-kind-class">Heap</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>
90
90
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
91
91
  <ul>
92
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/heap/heap.ts#L45">src/data-structures/heap/heap.ts:45</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/heap.ts#L45">src/data-structures/heap/heap.ts:45</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>
96
96
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagProtected">Protected</code> <code class="tsd-tag ts-flagAbstract">Abstract</code> <span>_pq</span><a href="#_pq" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
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
  <ul>
99
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/heap/heap.ts#L57">src/data-structures/heap/heap.ts:57</a></li></ul></aside></section>
99
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/heap/heap.ts#L57">src/data-structures/heap/heap.ts:57</a></li></ul></aside></section>
100
100
  <section class="tsd-panel tsd-member tsd-is-protected"><a id="_priorityCb" class="tsd-anchor"></a>
101
101
  <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>
102
102
  <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>
@@ -114,7 +114,7 @@ options provided.</p>
114
114
  <h5><span class="tsd-kind-parameter">val</span>: <span class="tsd-signature-type tsd-kind-type-parameter">T</span></h5></li></ul></div>
115
115
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4></li></ul></li></ul></div><aside class="tsd-sources">
116
116
  <ul>
117
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/heap/heap.ts#L67">src/data-structures/heap/heap.ts:67</a></li></ul></aside></section></section>
117
+ <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>
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="pq" class="tsd-anchor"></a>
@@ -124,7 +124,7 @@ options provided.</p>
124
124
  <li class="tsd-description">
125
125
  <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">
126
126
  <ul>
127
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/heap/heap.ts#L59">src/data-structures/heap/heap.ts:59</a></li></ul></aside></li>
127
+ <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>
128
128
  <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>
129
129
  <li class="tsd-description">
130
130
  <div class="tsd-parameters">
@@ -134,7 +134,7 @@ options provided.</p>
134
134
  <h5><span class="tsd-kind-parameter">v</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></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/dcec645/src/data-structures/heap/heap.ts#L63">src/data-structures/heap/heap.ts:63</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/heap/heap.ts#L63">src/data-structures/heap/heap.ts:63</a></li></ul></aside></li></ul></section>
138
138
  <section class="tsd-panel tsd-member"><a id="priorityCb" class="tsd-anchor"></a>
139
139
  <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>
140
140
  <ul class="tsd-signatures">
@@ -153,7 +153,7 @@ options provided.</p>
153
153
  <h5><span class="tsd-kind-parameter">val</span>: <span class="tsd-signature-type tsd-kind-type-parameter">T</span></h5></li></ul></div>
154
154
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4></li></ul></li></ul><aside class="tsd-sources">
155
155
  <ul>
156
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/heap/heap.ts#L68">src/data-structures/heap/heap.ts:68</a></li></ul></aside></li>
156
+ <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>
157
157
  <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>
158
158
  <li class="tsd-description">
159
159
  <div class="tsd-parameters">
@@ -174,7 +174,7 @@ options provided.</p>
174
174
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4></li></ul></li></ul></li></ul></div>
175
175
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
176
176
  <ul>
177
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/heap/heap.ts#L72">src/data-structures/heap/heap.ts:72</a></li></ul></aside></li></ul></section>
177
+ <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>
178
178
  <section class="tsd-panel tsd-member"><a id="size" class="tsd-anchor"></a>
179
179
  <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>
180
180
  <ul class="tsd-signatures">
@@ -186,7 +186,7 @@ options provided.</p>
186
186
 
187
187
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
188
188
  <ul>
189
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/heap/heap.ts#L80">src/data-structures/heap/heap.ts:80</a></li></ul></aside></li></ul></section></section>
189
+ <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>
190
190
  <section class="tsd-panel-group tsd-member-group">
191
191
  <h2>Methods</h2>
192
192
  <section class="tsd-panel tsd-member"><a id="add" class="tsd-anchor"></a>
@@ -218,7 +218,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
218
218
  <h4>Throws</h4><p>if priority is not a valid number</p>
219
219
  </div><aside class="tsd-sources">
220
220
  <ul>
221
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/heap/heap.ts#L139">src/data-structures/heap/heap.ts:139</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/heap/heap.ts#L139">src/data-structures/heap/heap.ts:139</a></li></ul></aside></li></ul></section>
222
222
  <section class="tsd-panel tsd-member"><a id="clear" class="tsd-anchor"></a>
223
223
  <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>
224
224
  <ul class="tsd-signatures">
@@ -229,7 +229,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
229
229
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
230
230
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
231
231
  <ul>
232
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/heap/heap.ts#L202">src/data-structures/heap/heap.ts:202</a></li></ul></aside></li></ul></section>
232
+ <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>
233
233
  <section class="tsd-panel tsd-member"><a id="getPq" class="tsd-anchor"></a>
234
234
  <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>
235
235
  <ul class="tsd-signatures">
@@ -240,7 +240,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
240
240
  <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>
241
241
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
242
242
  <ul>
243
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/heap/heap.ts#L87">src/data-structures/heap/heap.ts:87</a></li></ul></aside></li></ul></section>
243
+ <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>
244
244
  <section class="tsd-panel tsd-member"><a id="getPriorityCb" class="tsd-anchor"></a>
245
245
  <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>
246
246
  <ul class="tsd-signatures">
@@ -262,7 +262,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
262
262
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4></li></ul></li></ul>
263
263
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
264
264
  <ul>
265
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/heap/heap.ts#L94">src/data-structures/heap/heap.ts:94</a></li></ul></aside></li></ul></section>
265
+ <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>
266
266
  <section class="tsd-panel tsd-member"><a id="getSize" class="tsd-anchor"></a>
267
267
  <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>
268
268
  <ul class="tsd-signatures">
@@ -273,7 +273,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
273
273
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
274
274
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
275
275
  <ul>
276
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/heap/heap.ts#L101">src/data-structures/heap/heap.ts:101</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#L101">src/data-structures/heap/heap.ts:101</a></li></ul></aside></li></ul></section>
277
277
  <section class="tsd-panel tsd-member"><a id="has" class="tsd-anchor"></a>
278
278
  <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>
279
279
  <ul class="tsd-signatures">
@@ -293,7 +293,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
293
293
 
294
294
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
295
295
  <ul>
296
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/heap/heap.ts#L181">src/data-structures/heap/heap.ts:181</a></li></ul></aside></li></ul></section>
296
+ <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>
297
297
  <section class="tsd-panel tsd-member"><a id="isEmpty" class="tsd-anchor"></a>
298
298
  <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>
299
299
  <ul class="tsd-signatures">
@@ -305,7 +305,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
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/dcec645/src/data-structures/heap/heap.ts#L109">src/data-structures/heap/heap.ts:109</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/heap/heap.ts#L109">src/data-structures/heap/heap.ts:109</a></li></ul></aside></li></ul></section>
309
309
  <section class="tsd-panel tsd-member"><a id="peek" class="tsd-anchor"></a>
310
310
  <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>
311
311
  <ul class="tsd-signatures">
@@ -317,7 +317,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
317
317
 
318
318
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
319
319
  <ul>
320
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/heap/heap.ts#L117">src/data-structures/heap/heap.ts:117</a></li></ul></aside></li></ul></section>
320
+ <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>
321
321
  <section class="tsd-panel tsd-member"><a id="peekLast" class="tsd-anchor"></a>
322
322
  <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>
323
323
  <ul class="tsd-signatures">
@@ -329,7 +329,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
329
329
 
330
330
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
331
331
  <ul>
332
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/heap/heap.ts#L125">src/data-structures/heap/heap.ts:125</a></li></ul></aside></li></ul></section>
332
+ <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>
333
333
  <section class="tsd-panel tsd-member"><a id="poll" class="tsd-anchor"></a>
334
334
  <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>
335
335
  <ul class="tsd-signatures">
@@ -341,7 +341,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
341
341
 
342
342
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
343
343
  <ul>
344
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/heap/heap.ts#L168">src/data-structures/heap/heap.ts:168</a></li></ul></aside></li></ul></section>
344
+ <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>
345
345
  <section class="tsd-panel tsd-member"><a id="toArray" class="tsd-anchor"></a>
346
346
  <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>
347
347
  <ul class="tsd-signatures">
@@ -353,7 +353,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
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/dcec645/src/data-structures/heap/heap.ts#L195">src/data-structures/heap/heap.ts:195</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/heap/heap.ts#L195">src/data-structures/heap/heap.ts:195</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">
@@ -435,6 +435,7 @@ the value of <code>val</code>. If the <code>val</code> parameter is not a number
435
435
  <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>
436
436
  <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>
437
437
  <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>
438
+ <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>
438
439
  <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>
439
440
  <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>
440
441
  <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>
@@ -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/dcec645/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/dcec645/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/dcec645/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/dcec645/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/dcec645/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/dcec645/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/dcec645/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/dcec645/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>