data-structure-typed 1.17.4 → 1.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data-structures/binary-tree/avl-tree.js +4 -4
- package/dist/data-structures/binary-tree/binary-indexed-tree.d.ts +3 -1
- package/dist/data-structures/binary-tree/binary-indexed-tree.js +10 -0
- package/dist/data-structures/binary-tree/binary-tree.d.ts +41 -68
- package/dist/data-structures/binary-tree/binary-tree.js +126 -103
- package/dist/data-structures/binary-tree/bst.js +18 -19
- package/dist/data-structures/binary-tree/segment-tree.d.ts +17 -39
- package/dist/data-structures/binary-tree/segment-tree.js +34 -47
- package/dist/data-structures/graph/abstract-graph.d.ts +3 -16
- package/dist/data-structures/graph/abstract-graph.js +3 -24
- package/dist/data-structures/graph/directed-graph.d.ts +3 -11
- package/dist/data-structures/graph/directed-graph.js +2 -14
- package/dist/data-structures/graph/undirected-graph.d.ts +1 -5
- package/dist/data-structures/graph/undirected-graph.js +3 -9
- package/dist/data-structures/hash/coordinate-map.d.ts +1 -5
- package/dist/data-structures/hash/coordinate-map.js +3 -9
- package/dist/data-structures/hash/coordinate-set.d.ts +1 -5
- package/dist/data-structures/hash/coordinate-set.js +3 -9
- package/dist/data-structures/hash/hash-table.d.ts +2 -1
- package/dist/data-structures/hash/hash-table.js +7 -0
- package/dist/data-structures/hash/pair.d.ts +2 -1
- package/dist/data-structures/hash/pair.js +7 -0
- package/dist/data-structures/hash/tree-map.d.ts +2 -1
- package/dist/data-structures/hash/tree-map.js +7 -0
- package/dist/data-structures/hash/tree-set.d.ts +2 -1
- package/dist/data-structures/hash/tree-set.js +7 -0
- package/dist/data-structures/heap/heap.d.ts +0 -14
- package/dist/data-structures/heap/heap.js +3 -27
- package/dist/data-structures/linked-list/doubly-linked-list.d.ts +0 -2
- package/dist/data-structures/linked-list/doubly-linked-list.js +12 -18
- package/dist/data-structures/linked-list/singly-linked-list.d.ts +0 -1
- package/dist/data-structures/linked-list/singly-linked-list.js +12 -15
- package/dist/data-structures/tree/tree.d.ts +12 -4
- package/dist/data-structures/tree/tree.js +44 -12
- package/dist/data-structures/trie/trie.d.ts +3 -3
- package/dist/data-structures/trie/trie.js +10 -10
- package/dist/data-structures/types/doubly-linked-list.d.ts +1 -1
- package/docs/assets/search.js +1 -1
- package/docs/classes/AVLTree.html +370 -224
- package/docs/classes/AVLTreeNode.html +24 -202
- package/docs/classes/AaTree.html +5 -2
- package/docs/classes/AbstractEdge.html +32 -57
- package/docs/classes/AbstractGraph.html +35 -32
- package/docs/classes/AbstractVertex.html +10 -25
- package/docs/classes/ArrayDeque.html +18 -15
- package/docs/classes/BST.html +363 -217
- package/docs/classes/BSTNode.html +24 -202
- package/docs/classes/BTree.html +5 -2
- package/docs/classes/BinaryIndexedTree.html +43 -10
- package/docs/classes/BinaryTree.html +385 -182
- package/docs/classes/BinaryTreeNode.html +64 -165
- package/docs/classes/Character.html +8 -5
- package/docs/classes/CoordinateMap.html +36 -41
- package/docs/classes/CoordinateSet.html +35 -40
- package/docs/classes/Deque.html +38 -57
- package/docs/classes/DirectedEdge.html +44 -82
- package/docs/classes/DirectedGraph.html +50 -47
- package/docs/classes/DirectedVertex.html +10 -26
- package/docs/classes/DoublyLinkedList.html +41 -58
- package/docs/classes/DoublyLinkedListNode.html +15 -12
- package/docs/classes/HashTable.html +153 -0
- package/docs/classes/Heap.html +19 -97
- package/docs/classes/HeapItem.html +12 -9
- package/docs/classes/Matrix2D.html +20 -17
- package/docs/classes/MatrixNTI2D.html +8 -5
- package/docs/classes/MaxHeap.html +19 -102
- package/docs/classes/MaxPriorityQueue.html +38 -35
- package/docs/classes/MinHeap.html +19 -102
- package/docs/classes/MinPriorityQueue.html +38 -35
- package/docs/classes/Navigator.html +14 -11
- package/docs/classes/ObjectDeque.html +29 -26
- package/docs/classes/Pair.html +153 -0
- package/docs/classes/PriorityQueue.html +36 -33
- package/docs/classes/Queue.html +18 -15
- package/docs/classes/RBTree.html +5 -2
- package/docs/classes/SegmentTree.html +116 -46
- package/docs/classes/SegmentTreeNode.html +49 -129
- package/docs/classes/SinglyLinkedList.html +38 -45
- package/docs/classes/SinglyLinkedListNode.html +12 -9
- package/docs/classes/SkipLinkedList.html +5 -2
- package/docs/classes/SplayTree.html +5 -2
- package/docs/classes/Stack.html +16 -13
- package/docs/classes/TreeMap.html +153 -0
- package/docs/classes/TreeMultiSet.html +363 -217
- package/docs/classes/TreeNode.html +112 -24
- package/docs/classes/TreeSet.html +153 -0
- package/docs/classes/Trie.html +17 -14
- package/docs/classes/TrieNode.html +20 -17
- package/docs/classes/TwoThreeTree.html +5 -2
- package/docs/classes/UndirectedEdge.html +44 -56
- package/docs/classes/UndirectedGraph.html +49 -54
- package/docs/classes/UndirectedVertex.html +10 -26
- package/docs/classes/Vector2D.html +32 -29
- package/docs/enums/CP.html +8 -5
- package/docs/enums/FamilyPosition.html +8 -5
- package/docs/enums/LoopType.html +7 -4
- package/docs/index.html +8 -1
- package/docs/interfaces/AVLTreeDeleted.html +7 -4
- package/docs/interfaces/HeapOptions.html +6 -3
- package/docs/interfaces/IDirectedGraph.html +11 -8
- package/docs/interfaces/IGraph.html +23 -20
- package/docs/interfaces/NavigatorParams.html +9 -6
- package/docs/interfaces/PriorityQueueOptions.html +8 -5
- package/docs/modules.html +8 -2
- package/docs/types/BSTComparator.html +5 -2
- package/docs/types/BSTDeletedResult.html +5 -2
- package/docs/types/BinaryTreeDeleted.html +5 -2
- package/docs/types/BinaryTreeNodeId.html +5 -2
- package/docs/types/BinaryTreeNodePropertyName.html +5 -2
- package/docs/types/DFSOrderPattern.html +5 -2
- package/docs/types/DijkstraResult.html +5 -2
- package/docs/types/Direction.html +5 -2
- package/docs/types/NodeOrPropertyName.html +5 -2
- package/docs/types/PriorityQueueComparator.html +5 -2
- package/docs/types/PriorityQueueDFSOrderPattern.html +5 -2
- package/docs/types/ResultByProperty.html +5 -2
- package/docs/types/ResultsByProperty.html +5 -2
- package/docs/types/SegmentTreeNodeVal.html +5 -2
- package/docs/types/SpecifyOptional.html +5 -2
- package/docs/types/Thunk.html +5 -2
- package/docs/types/ToThunkFn.html +5 -2
- package/docs/types/TopologicalStatus.html +5 -2
- package/docs/types/TreeMultiSetDeletedResult.html +5 -2
- package/docs/types/TrlAsyncFn.html +5 -2
- package/docs/types/TrlFn.html +5 -2
- package/docs/types/Turning.html +5 -2
- package/docs/types/VertexId.html +5 -2
- package/notes/note.md +5 -1
- package/package.json +2 -2
- package/tsconfig.json +2 -2
- package/docs/types/DoublyLinkedListGetBy.html +0 -125
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<ul class="tsd-hierarchy">
|
|
26
26
|
<li><span class="target">SinglyLinkedList</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/
|
|
28
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L41">src/data-structures/linked-list/singly-linked-list.ts:41</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">
|
|
@@ -88,24 +88,24 @@
|
|
|
88
88
|
<h4 class="tsd-returns-title">Returns <a href="SinglyLinkedList.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedList</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">></span></h4>
|
|
89
89
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
90
90
|
<ul>
|
|
91
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
91
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L46">src/data-structures/linked-list/singly-linked-list.ts:46</a></li></ul></aside></li></ul></section></section>
|
|
92
92
|
<section class="tsd-panel-group tsd-member-group">
|
|
93
93
|
<h2>Properties</h2>
|
|
94
94
|
<section class="tsd-panel tsd-member tsd-is-private"><a id="_head" class="tsd-anchor"></a>
|
|
95
95
|
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_head</span><a href="#_head" 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">_head</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><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">
|
|
97
97
|
<ul>
|
|
98
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
98
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L52">src/data-structures/linked-list/singly-linked-list.ts:52</a></li></ul></aside></section>
|
|
99
99
|
<section class="tsd-panel tsd-member tsd-is-private"><a id="_length" class="tsd-anchor"></a>
|
|
100
100
|
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_length</span><a href="#_length" 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">_length</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
|
|
102
102
|
<ul>
|
|
103
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
103
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L72">src/data-structures/linked-list/singly-linked-list.ts:72</a></li></ul></aside></section>
|
|
104
104
|
<section class="tsd-panel tsd-member tsd-is-private"><a id="_tail" class="tsd-anchor"></a>
|
|
105
105
|
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_tail</span><a href="#_tail" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
106
106
|
<div class="tsd-signature"><span class="tsd-kind-property">_tail</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><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">
|
|
107
107
|
<ul>
|
|
108
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
108
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L62">src/data-structures/linked-list/singly-linked-list.ts:62</a></li></ul></aside></section></section>
|
|
109
109
|
<section class="tsd-panel-group tsd-member-group">
|
|
110
110
|
<h2>Accessors</h2>
|
|
111
111
|
<section class="tsd-panel tsd-member"><a id="head" class="tsd-anchor"></a>
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
<li class="tsd-description">
|
|
116
116
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
|
117
117
|
<ul>
|
|
118
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
118
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L54">src/data-structures/linked-list/singly-linked-list.ts:54</a></li></ul></aside></li>
|
|
119
119
|
<li class="tsd-signature" id="head.head-2"><span class="tsd-signature-symbol">set</span> head<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>
|
|
120
120
|
<li class="tsd-description">
|
|
121
121
|
<div class="tsd-parameters">
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
<h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">></span></h5></li></ul></div>
|
|
126
126
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
127
127
|
<ul>
|
|
128
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
128
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L58">src/data-structures/linked-list/singly-linked-list.ts:58</a></li></ul></aside></li></ul></section>
|
|
129
129
|
<section class="tsd-panel tsd-member"><a id="length" class="tsd-anchor"></a>
|
|
130
130
|
<h3 class="tsd-anchor-link"><span>length</span><a href="#length" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
131
131
|
<ul class="tsd-signatures">
|
|
@@ -133,17 +133,7 @@
|
|
|
133
133
|
<li class="tsd-description">
|
|
134
134
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
|
|
135
135
|
<ul>
|
|
136
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
137
|
-
<li class="tsd-signature" id="length.length-2"><span class="tsd-signature-symbol">set</span> length<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>
|
|
138
|
-
<li class="tsd-description">
|
|
139
|
-
<div class="tsd-parameters">
|
|
140
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
141
|
-
<ul class="tsd-parameter-list">
|
|
142
|
-
<li>
|
|
143
|
-
<h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">number</span></h5></li></ul></div>
|
|
144
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
145
|
-
<ul>
|
|
146
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/4813c6d/src/data-structures/linked-list/singly-linked-list.ts#L78">src/data-structures/linked-list/singly-linked-list.ts:78</a></li></ul></aside></li></ul></section>
|
|
136
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L74">src/data-structures/linked-list/singly-linked-list.ts:74</a></li></ul></aside></li></ul></section>
|
|
147
137
|
<section class="tsd-panel tsd-member"><a id="tail" class="tsd-anchor"></a>
|
|
148
138
|
<h3 class="tsd-anchor-link"><span>tail</span><a href="#tail" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
149
139
|
<ul class="tsd-signatures">
|
|
@@ -151,7 +141,7 @@
|
|
|
151
141
|
<li class="tsd-description">
|
|
152
142
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
|
153
143
|
<ul>
|
|
154
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
144
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L64">src/data-structures/linked-list/singly-linked-list.ts:64</a></li></ul></aside></li>
|
|
155
145
|
<li class="tsd-signature" id="tail.tail-2"><span class="tsd-signature-symbol">set</span> tail<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>
|
|
156
146
|
<li class="tsd-description">
|
|
157
147
|
<div class="tsd-parameters">
|
|
@@ -161,7 +151,7 @@
|
|
|
161
151
|
<h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">></span></h5></li></ul></div>
|
|
162
152
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
163
153
|
<ul>
|
|
164
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
154
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L68">src/data-structures/linked-list/singly-linked-list.ts:68</a></li></ul></aside></li></ul></section></section>
|
|
165
155
|
<section class="tsd-panel-group tsd-member-group">
|
|
166
156
|
<h2>Methods</h2>
|
|
167
157
|
<section class="tsd-panel tsd-member"><a id="clear" class="tsd-anchor"></a>
|
|
@@ -174,7 +164,7 @@
|
|
|
174
164
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
175
165
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
176
166
|
<ul>
|
|
177
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
167
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L300">src/data-structures/linked-list/singly-linked-list.ts:300</a></li></ul></aside></li></ul></section>
|
|
178
168
|
<section class="tsd-panel tsd-member"><a id="countOccurrences" class="tsd-anchor"></a>
|
|
179
169
|
<h3 class="tsd-anchor-link"><span>count<wbr/>Occurrences</span><a href="#countOccurrences" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
180
170
|
<ul class="tsd-signatures">
|
|
@@ -194,7 +184,7 @@
|
|
|
194
184
|
|
|
195
185
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
196
186
|
<ul>
|
|
197
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
187
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L477">src/data-structures/linked-list/singly-linked-list.ts:477</a></li></ul></aside></li></ul></section>
|
|
198
188
|
<section class="tsd-panel tsd-member"><a id="delete" class="tsd-anchor"></a>
|
|
199
189
|
<h3 class="tsd-anchor-link"><span>delete</span><a href="#delete" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
200
190
|
<ul class="tsd-signatures">
|
|
@@ -216,7 +206,7 @@ successfully deleted from the linked list, and <code>false</code> if the value o
|
|
|
216
206
|
|
|
217
207
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
218
208
|
<ul>
|
|
219
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
209
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L219">src/data-structures/linked-list/singly-linked-list.ts:219</a></li></ul></aside></li>
|
|
220
210
|
<li class="tsd-signature tsd-anchor-link" id="delete.delete-2"><span class="tsd-kind-call-signature">delete</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">valueOrNode</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#delete.delete-2" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
221
211
|
<li class="tsd-description">
|
|
222
212
|
<div class="tsd-comment tsd-typography"><p>The delete function removes a node with a specific value from a singly linked list.</p>
|
|
@@ -235,7 +225,7 @@ successfully deleted from the linked list, and <code>false</code> if the value o
|
|
|
235
225
|
|
|
236
226
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
237
227
|
<ul>
|
|
238
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
228
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L220">src/data-structures/linked-list/singly-linked-list.ts:220</a></li></ul></aside></li></ul></section>
|
|
239
229
|
<section class="tsd-panel tsd-member"><a id="deleteAt" class="tsd-anchor"></a>
|
|
240
230
|
<h3 class="tsd-anchor-link"><span>delete<wbr/>At</span><a href="#deleteAt" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
241
231
|
<ul class="tsd-signatures">
|
|
@@ -257,7 +247,7 @@ bounds.</p>
|
|
|
257
247
|
|
|
258
248
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
259
249
|
<ul>
|
|
260
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
250
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L207">src/data-structures/linked-list/singly-linked-list.ts:207</a></li></ul></aside></li></ul></section>
|
|
261
251
|
<section class="tsd-panel tsd-member"><a id="find" class="tsd-anchor"></a>
|
|
262
252
|
<h3 class="tsd-anchor-link"><span>find</span><a href="#find" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
263
253
|
<ul class="tsd-signatures">
|
|
@@ -290,7 +280,7 @@ the callback function. If no element satisfies the condition, it returns <code>n
|
|
|
290
280
|
|
|
291
281
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
292
282
|
<ul>
|
|
293
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
283
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L348">src/data-structures/linked-list/singly-linked-list.ts:348</a></li></ul></aside></li></ul></section>
|
|
294
284
|
<section class="tsd-panel tsd-member"><a id="findNode" class="tsd-anchor"></a>
|
|
295
285
|
<h3 class="tsd-anchor-link"><span>find<wbr/>Node</span><a href="#findNode" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
296
286
|
<ul class="tsd-signatures">
|
|
@@ -312,7 +302,7 @@ the specified value is found, the function returns <code>null</code>.</p>
|
|
|
312
302
|
|
|
313
303
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
314
304
|
<ul>
|
|
315
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
305
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L387">src/data-structures/linked-list/singly-linked-list.ts:387</a></li></ul></aside></li></ul></section>
|
|
316
306
|
<section class="tsd-panel tsd-member"><a id="getAt" class="tsd-anchor"></a>
|
|
317
307
|
<h3 class="tsd-anchor-link"><span>get<wbr/>At</span><a href="#getAt" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
318
308
|
<ul class="tsd-signatures">
|
|
@@ -334,7 +324,7 @@ retrieve from the list.</p>
|
|
|
334
324
|
|
|
335
325
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
336
326
|
<ul>
|
|
337
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
327
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L176">src/data-structures/linked-list/singly-linked-list.ts:176</a></li></ul></aside></li></ul></section>
|
|
338
328
|
<section class="tsd-panel tsd-member"><a id="getLength" class="tsd-anchor"></a>
|
|
339
329
|
<h3 class="tsd-anchor-link"><span>get<wbr/>Length</span><a href="#getLength" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
340
330
|
<ul class="tsd-signatures">
|
|
@@ -342,7 +332,7 @@ retrieve from the list.</p>
|
|
|
342
332
|
<li class="tsd-description">
|
|
343
333
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
|
|
344
334
|
<ul>
|
|
345
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
335
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L92">src/data-structures/linked-list/singly-linked-list.ts:92</a></li></ul></aside></li></ul></section>
|
|
346
336
|
<section class="tsd-panel tsd-member"><a id="getNodeAt" class="tsd-anchor"></a>
|
|
347
337
|
<h3 class="tsd-anchor-link"><span>get<wbr/>Node<wbr/>At</span><a href="#getNodeAt" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
348
338
|
<ul class="tsd-signatures">
|
|
@@ -364,7 +354,7 @@ specified index exists, or <code>null</code> if the index is out of bounds.</p>
|
|
|
364
354
|
|
|
365
355
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
366
356
|
<ul>
|
|
367
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
357
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L192">src/data-structures/linked-list/singly-linked-list.ts:192</a></li></ul></aside></li></ul></section>
|
|
368
358
|
<section class="tsd-panel tsd-member"><a id="indexOf" class="tsd-anchor"></a>
|
|
369
359
|
<h3 class="tsd-anchor-link"><span>index<wbr/>Of</span><a href="#indexOf" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
370
360
|
<ul class="tsd-signatures">
|
|
@@ -385,7 +375,7 @@ value is not found, it returns -1.</p>
|
|
|
385
375
|
|
|
386
376
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
387
377
|
<ul>
|
|
388
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
378
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L365">src/data-structures/linked-list/singly-linked-list.ts:365</a></li></ul></aside></li></ul></section>
|
|
389
379
|
<section class="tsd-panel tsd-member"><a id="insertAfter" class="tsd-anchor"></a>
|
|
390
380
|
<h3 class="tsd-anchor-link"><span>insert<wbr/>After</span><a href="#insertAfter" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
391
381
|
<ul class="tsd-signatures">
|
|
@@ -412,7 +402,7 @@ existing value or node, and false if the existing value or node was not found in
|
|
|
412
402
|
|
|
413
403
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
414
404
|
<ul>
|
|
415
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
405
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L439">src/data-structures/linked-list/singly-linked-list.ts:439</a></li></ul></aside></li>
|
|
416
406
|
<li class="tsd-signature tsd-anchor-link" id="insertAfter.insertAfter-2"><span class="tsd-kind-call-signature">insert<wbr/>After</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">existingValueOrNode</span>, <span class="tsd-kind-parameter">newValue</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#insertAfter.insertAfter-2" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
417
407
|
<li class="tsd-description">
|
|
418
408
|
<div class="tsd-comment tsd-typography"><p>The <code>insertAfter</code> function inserts a new node with a given value after an existing node in a singly linked list.</p>
|
|
@@ -436,7 +426,7 @@ existing value or node, and false if the existing value or node was not found in
|
|
|
436
426
|
|
|
437
427
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
438
428
|
<ul>
|
|
439
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
429
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L440">src/data-structures/linked-list/singly-linked-list.ts:440</a></li></ul></aside></li></ul></section>
|
|
440
430
|
<section class="tsd-panel tsd-member"><a id="insertAt" class="tsd-anchor"></a>
|
|
441
431
|
<h3 class="tsd-anchor-link"><span>insert<wbr/>At</span><a href="#insertAt" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
442
432
|
<ul class="tsd-signatures">
|
|
@@ -464,7 +454,7 @@ if the index is out of bounds.</p>
|
|
|
464
454
|
|
|
465
455
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
466
456
|
<ul>
|
|
467
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
457
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L269">src/data-structures/linked-list/singly-linked-list.ts:269</a></li></ul></aside></li></ul></section>
|
|
468
458
|
<section class="tsd-panel tsd-member"><a id="insertBefore" class="tsd-anchor"></a>
|
|
469
459
|
<h3 class="tsd-anchor-link"><span>insert<wbr/>Before</span><a href="#insertBefore" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
470
460
|
<ul class="tsd-signatures">
|
|
@@ -487,7 +477,7 @@ inserted before the existing value, and <code>false</code> otherwise.</p>
|
|
|
487
477
|
|
|
488
478
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
489
479
|
<ul>
|
|
490
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
480
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L400">src/data-structures/linked-list/singly-linked-list.ts:400</a></li></ul></aside></li>
|
|
491
481
|
<li class="tsd-signature tsd-anchor-link" id="insertBefore.insertBefore-2"><span class="tsd-kind-call-signature">insert<wbr/>Before</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">existingValue</span>, <span class="tsd-kind-parameter">newValue</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#insertBefore.insertBefore-2" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
492
482
|
<li class="tsd-description">
|
|
493
483
|
<div class="tsd-comment tsd-typography"><p>The <code>insertBefore</code> function inserts a new value before an existing value in a singly linked list.</p>
|
|
@@ -507,7 +497,7 @@ inserted before the existing value, and <code>false</code> otherwise.</p>
|
|
|
507
497
|
|
|
508
498
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
509
499
|
<ul>
|
|
510
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
500
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L401">src/data-structures/linked-list/singly-linked-list.ts:401</a></li></ul></aside></li></ul></section>
|
|
511
501
|
<section class="tsd-panel tsd-member"><a id="isEmpty" class="tsd-anchor"></a>
|
|
512
502
|
<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>
|
|
513
503
|
<ul class="tsd-signatures">
|
|
@@ -520,7 +510,7 @@ whether it is empty or not.</p>
|
|
|
520
510
|
|
|
521
511
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
522
512
|
<ul>
|
|
523
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
513
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L293">src/data-structures/linked-list/singly-linked-list.ts:293</a></li></ul></aside></li></ul></section>
|
|
524
514
|
<section class="tsd-panel tsd-member"><a id="pop" class="tsd-anchor"></a>
|
|
525
515
|
<h3 class="tsd-anchor-link"><span>pop</span><a href="#pop" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
526
516
|
<ul class="tsd-signatures">
|
|
@@ -534,7 +524,7 @@ the linked list is empty, it returns <code>null</code>.</p>
|
|
|
534
524
|
|
|
535
525
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
536
526
|
<ul>
|
|
537
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
527
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L119">src/data-structures/linked-list/singly-linked-list.ts:119</a></li></ul></aside></li></ul></section>
|
|
538
528
|
<section class="tsd-panel tsd-member"><a id="push" class="tsd-anchor"></a>
|
|
539
529
|
<h3 class="tsd-anchor-link"><span>push</span><a href="#push" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
540
530
|
<ul class="tsd-signatures">
|
|
@@ -554,7 +544,7 @@ any type (T) as specified in the generic type declaration of the class or functi
|
|
|
554
544
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
555
545
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
556
546
|
<ul>
|
|
557
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
547
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L101">src/data-structures/linked-list/singly-linked-list.ts:101</a></li></ul></aside></li></ul></section>
|
|
558
548
|
<section class="tsd-panel tsd-member"><a id="reverse" class="tsd-anchor"></a>
|
|
559
549
|
<h3 class="tsd-anchor-link"><span>reverse</span><a href="#reverse" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
560
550
|
<ul class="tsd-signatures">
|
|
@@ -566,7 +556,7 @@ any type (T) as specified in the generic type declaration of the class or functi
|
|
|
566
556
|
|
|
567
557
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
568
558
|
<ul>
|
|
569
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
559
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L324">src/data-structures/linked-list/singly-linked-list.ts:324</a></li></ul></aside></li></ul></section>
|
|
570
560
|
<section class="tsd-panel tsd-member"><a id="shift" class="tsd-anchor"></a>
|
|
571
561
|
<h3 class="tsd-anchor-link"><span>shift</span><a href="#shift" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
572
562
|
<ul class="tsd-signatures">
|
|
@@ -578,7 +568,7 @@ any type (T) as specified in the generic type declaration of the class or functi
|
|
|
578
568
|
|
|
579
569
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
580
570
|
<ul>
|
|
581
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
571
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L144">src/data-structures/linked-list/singly-linked-list.ts:144</a></li></ul></aside></li></ul></section>
|
|
582
572
|
<section class="tsd-panel tsd-member"><a id="toArray" class="tsd-anchor"></a>
|
|
583
573
|
<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>
|
|
584
574
|
<ul class="tsd-signatures">
|
|
@@ -590,7 +580,7 @@ any type (T) as specified in the generic type declaration of the class or functi
|
|
|
590
580
|
|
|
591
581
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
592
582
|
<ul>
|
|
593
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
583
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L310">src/data-structures/linked-list/singly-linked-list.ts:310</a></li></ul></aside></li></ul></section>
|
|
594
584
|
<section class="tsd-panel tsd-member"><a id="unshift" class="tsd-anchor"></a>
|
|
595
585
|
<h3 class="tsd-anchor-link"><span>unshift</span><a href="#unshift" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
596
586
|
<ul class="tsd-signatures">
|
|
@@ -610,7 +600,7 @@ linked list.</p>
|
|
|
610
600
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
611
601
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
612
602
|
<ul>
|
|
613
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
603
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L157">src/data-structures/linked-list/singly-linked-list.ts:157</a></li></ul></aside></li></ul></section>
|
|
614
604
|
<section class="tsd-panel tsd-member"><a id="fromArray" class="tsd-anchor"></a>
|
|
615
605
|
<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>
|
|
616
606
|
<ul class="tsd-signatures">
|
|
@@ -636,7 +626,7 @@ array.</p>
|
|
|
636
626
|
|
|
637
627
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
638
628
|
<ul>
|
|
639
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
629
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L84">src/data-structures/linked-list/singly-linked-list.ts:84</a></li></ul></aside></li></ul></section></section></div>
|
|
640
630
|
<div class="col-sidebar">
|
|
641
631
|
<div class="page-menu">
|
|
642
632
|
<div class="tsd-navigation settings">
|
|
@@ -712,6 +702,7 @@ array.</p>
|
|
|
712
702
|
<li><a href="DirectedVertex.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Directed<wbr/>Vertex</span></a></li>
|
|
713
703
|
<li><a href="DoublyLinkedList.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Doubly<wbr/>Linked<wbr/>List</span></a></li>
|
|
714
704
|
<li><a href="DoublyLinkedListNode.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Doubly<wbr/>Linked<wbr/>List<wbr/>Node</span></a></li>
|
|
705
|
+
<li><a href="HashTable.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Hash<wbr/>Table</span></a></li>
|
|
715
706
|
<li><a href="Heap.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Heap</span></a></li>
|
|
716
707
|
<li><a href="HeapItem.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Heap<wbr/>Item</span></a></li>
|
|
717
708
|
<li><a href="Matrix2D.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Matrix2D</span></a></li>
|
|
@@ -722,6 +713,7 @@ array.</p>
|
|
|
722
713
|
<li><a href="MinPriorityQueue.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Min<wbr/>Priority<wbr/>Queue</span></a></li>
|
|
723
714
|
<li><a href="Navigator.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Navigator</span></a></li>
|
|
724
715
|
<li><a href="ObjectDeque.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Object<wbr/>Deque</span></a></li>
|
|
716
|
+
<li><a href="Pair.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Pair</span></a></li>
|
|
725
717
|
<li><a href="PriorityQueue.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Priority<wbr/>Queue</span></a></li>
|
|
726
718
|
<li><a href="Queue.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Queue</span></a></li>
|
|
727
719
|
<li><a href="RBTree.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>RBTree</span></a></li>
|
|
@@ -732,8 +724,10 @@ array.</p>
|
|
|
732
724
|
<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>
|
|
733
725
|
<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>
|
|
734
726
|
<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>
|
|
727
|
+
<li><a href="TreeMap.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Tree<wbr/>Map</span></a></li>
|
|
735
728
|
<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>
|
|
736
729
|
<li><a href="TreeNode.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Tree<wbr/>Node</span></a></li>
|
|
730
|
+
<li><a href="TreeSet.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Tree<wbr/>Set</span></a></li>
|
|
737
731
|
<li><a href="Trie.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Trie</span></a></li>
|
|
738
732
|
<li><a href="TrieNode.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Trie<wbr/>Node</span></a></li>
|
|
739
733
|
<li><a href="TwoThreeTree.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Two<wbr/>Three<wbr/>Tree</span></a></li>
|
|
@@ -755,7 +749,6 @@ array.</p>
|
|
|
755
749
|
<li><a href="../types/DFSOrderPattern.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>DFSOrder<wbr/>Pattern</span></a></li>
|
|
756
750
|
<li><a href="../types/DijkstraResult.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Dijkstra<wbr/>Result</span></a></li>
|
|
757
751
|
<li><a href="../types/Direction.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Direction</span></a></li>
|
|
758
|
-
<li><a href="../types/DoublyLinkedListGetBy.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Doubly<wbr/>Linked<wbr/>List<wbr/>Get<wbr/>By</span></a></li>
|
|
759
752
|
<li><a href="../types/NodeOrPropertyName.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Node<wbr/>Or<wbr/>Property<wbr/>Name</span></a></li>
|
|
760
753
|
<li><a href="../types/PriorityQueueComparator.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Priority<wbr/>Queue<wbr/>Comparator</span></a></li>
|
|
761
754
|
<li><a href="../types/PriorityQueueDFSOrderPattern.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Priority<wbr/>QueueDFSOrder<wbr/>Pattern</span></a></li>
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
<ul class="tsd-hierarchy">
|
|
36
36
|
<li><span class="target">SinglyLinkedListNode</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/
|
|
38
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L8">src/data-structures/linked-list/singly-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">
|
|
@@ -81,19 +81,19 @@ will be stored in the node of a linked list.</p>
|
|
|
81
81
|
<h4 class="tsd-returns-title">Returns <a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">></span></h4>
|
|
82
82
|
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
83
83
|
<ul>
|
|
84
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
84
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L15">src/data-structures/linked-list/singly-linked-list.ts:15</a></li></ul></aside></li></ul></section></section>
|
|
85
85
|
<section class="tsd-panel-group tsd-member-group">
|
|
86
86
|
<h2>Properties</h2>
|
|
87
87
|
<section class="tsd-panel tsd-member tsd-is-private"><a id="_next" class="tsd-anchor"></a>
|
|
88
88
|
<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>
|
|
89
89
|
<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="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><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">
|
|
90
90
|
<ul>
|
|
91
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
91
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L30">src/data-structures/linked-list/singly-linked-list.ts:30</a></li></ul></aside></section>
|
|
92
92
|
<section class="tsd-panel tsd-member tsd-is-private"><a id="_val" class="tsd-anchor"></a>
|
|
93
93
|
<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>
|
|
94
94
|
<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">
|
|
95
95
|
<ul>
|
|
96
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
96
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L20">src/data-structures/linked-list/singly-linked-list.ts:20</a></li></ul></aside></section></section>
|
|
97
97
|
<section class="tsd-panel-group tsd-member-group">
|
|
98
98
|
<h2>Accessors</h2>
|
|
99
99
|
<section class="tsd-panel tsd-member"><a id="next" class="tsd-anchor"></a>
|
|
@@ -103,7 +103,7 @@ will be stored in the node of a linked list.</p>
|
|
|
103
103
|
<li class="tsd-description">
|
|
104
104
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
|
105
105
|
<ul>
|
|
106
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
106
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L32">src/data-structures/linked-list/singly-linked-list.ts:32</a></li></ul></aside></li>
|
|
107
107
|
<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>
|
|
108
108
|
<li class="tsd-description">
|
|
109
109
|
<div class="tsd-parameters">
|
|
@@ -113,7 +113,7 @@ will be stored in the node of a linked list.</p>
|
|
|
113
113
|
<h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">></span></h5></li></ul></div>
|
|
114
114
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
115
115
|
<ul>
|
|
116
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
116
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L36">src/data-structures/linked-list/singly-linked-list.ts:36</a></li></ul></aside></li></ul></section>
|
|
117
117
|
<section class="tsd-panel tsd-member"><a id="val" class="tsd-anchor"></a>
|
|
118
118
|
<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>
|
|
119
119
|
<ul class="tsd-signatures">
|
|
@@ -121,7 +121,7 @@ will be stored in the node of a linked list.</p>
|
|
|
121
121
|
<li class="tsd-description">
|
|
122
122
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type tsd-kind-type-parameter">T</span></h4><aside class="tsd-sources">
|
|
123
123
|
<ul>
|
|
124
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
124
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L22">src/data-structures/linked-list/singly-linked-list.ts:22</a></li></ul></aside></li>
|
|
125
125
|
<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>
|
|
126
126
|
<li class="tsd-description">
|
|
127
127
|
<div class="tsd-parameters">
|
|
@@ -131,7 +131,7 @@ will be stored in the node of a linked list.</p>
|
|
|
131
131
|
<h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type tsd-kind-type-parameter">T</span></h5></li></ul></div>
|
|
132
132
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
133
133
|
<ul>
|
|
134
|
-
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/
|
|
134
|
+
<li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/c1b5969/src/data-structures/linked-list/singly-linked-list.ts#L26">src/data-structures/linked-list/singly-linked-list.ts:26</a></li></ul></aside></li></ul></section></section></div>
|
|
135
135
|
<div class="col-sidebar">
|
|
136
136
|
<div class="page-menu">
|
|
137
137
|
<div class="tsd-navigation settings">
|
|
@@ -184,6 +184,7 @@ will be stored in the node of a linked list.</p>
|
|
|
184
184
|
<li><a href="DirectedVertex.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Directed<wbr/>Vertex</span></a></li>
|
|
185
185
|
<li><a href="DoublyLinkedList.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Doubly<wbr/>Linked<wbr/>List</span></a></li>
|
|
186
186
|
<li><a href="DoublyLinkedListNode.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Doubly<wbr/>Linked<wbr/>List<wbr/>Node</span></a></li>
|
|
187
|
+
<li><a href="HashTable.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Hash<wbr/>Table</span></a></li>
|
|
187
188
|
<li><a href="Heap.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Heap</span></a></li>
|
|
188
189
|
<li><a href="HeapItem.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Heap<wbr/>Item</span></a></li>
|
|
189
190
|
<li><a href="Matrix2D.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Matrix2D</span></a></li>
|
|
@@ -194,6 +195,7 @@ will be stored in the node of a linked list.</p>
|
|
|
194
195
|
<li><a href="MinPriorityQueue.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Min<wbr/>Priority<wbr/>Queue</span></a></li>
|
|
195
196
|
<li><a href="Navigator.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Navigator</span></a></li>
|
|
196
197
|
<li><a href="ObjectDeque.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Object<wbr/>Deque</span></a></li>
|
|
198
|
+
<li><a href="Pair.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Pair</span></a></li>
|
|
197
199
|
<li><a href="PriorityQueue.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Priority<wbr/>Queue</span></a></li>
|
|
198
200
|
<li><a href="Queue.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Queue</span></a></li>
|
|
199
201
|
<li><a href="RBTree.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>RBTree</span></a></li>
|
|
@@ -204,8 +206,10 @@ will be stored in the node of a linked list.</p>
|
|
|
204
206
|
<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>
|
|
205
207
|
<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>
|
|
206
208
|
<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>
|
|
209
|
+
<li><a href="TreeMap.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Tree<wbr/>Map</span></a></li>
|
|
207
210
|
<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>
|
|
208
211
|
<li><a href="TreeNode.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Tree<wbr/>Node</span></a></li>
|
|
212
|
+
<li><a href="TreeSet.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Tree<wbr/>Set</span></a></li>
|
|
209
213
|
<li><a href="Trie.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Trie</span></a></li>
|
|
210
214
|
<li><a href="TrieNode.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Trie<wbr/>Node</span></a></li>
|
|
211
215
|
<li><a href="TwoThreeTree.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Two<wbr/>Three<wbr/>Tree</span></a></li>
|
|
@@ -227,7 +231,6 @@ will be stored in the node of a linked list.</p>
|
|
|
227
231
|
<li><a href="../types/DFSOrderPattern.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>DFSOrder<wbr/>Pattern</span></a></li>
|
|
228
232
|
<li><a href="../types/DijkstraResult.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Dijkstra<wbr/>Result</span></a></li>
|
|
229
233
|
<li><a href="../types/Direction.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Direction</span></a></li>
|
|
230
|
-
<li><a href="../types/DoublyLinkedListGetBy.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Doubly<wbr/>Linked<wbr/>List<wbr/>Get<wbr/>By</span></a></li>
|
|
231
234
|
<li><a href="../types/NodeOrPropertyName.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Node<wbr/>Or<wbr/>Property<wbr/>Name</span></a></li>
|
|
232
235
|
<li><a href="../types/PriorityQueueComparator.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Priority<wbr/>Queue<wbr/>Comparator</span></a></li>
|
|
233
236
|
<li><a href="../types/PriorityQueueDFSOrderPattern.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4194304"></use></svg><span>Priority<wbr/>QueueDFSOrder<wbr/>Pattern</span></a></li>
|