data-structure-typed 1.16.1 → 1.17.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.
Files changed (94) hide show
  1. package/README.md +1 -1
  2. package/dist/data-structures/linked-list/doubly-linked-list.d.ts +195 -68
  3. package/dist/data-structures/linked-list/doubly-linked-list.js +456 -244
  4. package/dist/data-structures/linked-list/singly-linked-list.d.ts +126 -241
  5. package/dist/data-structures/linked-list/singly-linked-list.js +331 -628
  6. package/dist/data-structures/types/binary-tree.d.ts +0 -5
  7. package/docs/assets/search.js +1 -1
  8. package/docs/classes/AVLTree.html +93 -94
  9. package/docs/classes/AVLTreeNode.html +36 -37
  10. package/docs/classes/AaTree.html +1 -2
  11. package/docs/classes/AbstractEdge.html +11 -12
  12. package/docs/classes/AbstractGraph.html +29 -30
  13. package/docs/classes/AbstractVertex.html +6 -7
  14. package/docs/classes/ArrayDeque.html +14 -15
  15. package/docs/classes/BST.html +86 -87
  16. package/docs/classes/BSTNode.html +36 -37
  17. package/docs/classes/BTree.html +1 -2
  18. package/docs/classes/BinaryIndexedTree.html +7 -8
  19. package/docs/classes/BinaryTree.html +82 -83
  20. package/docs/classes/BinaryTreeNode.html +36 -37
  21. package/docs/classes/Character.html +4 -5
  22. package/docs/classes/CoordinateMap.html +10 -11
  23. package/docs/classes/CoordinateSet.html +9 -10
  24. package/docs/classes/Deque.html +496 -366
  25. package/docs/classes/DirectedEdge.html +17 -18
  26. package/docs/classes/DirectedGraph.html +41 -42
  27. package/docs/classes/DirectedVertex.html +6 -7
  28. package/docs/classes/DoublyLinkedList.html +479 -321
  29. package/docs/classes/DoublyLinkedListNode.html +52 -36
  30. package/docs/classes/Heap.html +20 -21
  31. package/docs/classes/HeapItem.html +8 -9
  32. package/docs/classes/Matrix2D.html +16 -17
  33. package/docs/classes/MatrixNTI2D.html +4 -5
  34. package/docs/classes/MaxHeap.html +20 -21
  35. package/docs/classes/MaxPriorityQueue.html +34 -35
  36. package/docs/classes/MinHeap.html +20 -21
  37. package/docs/classes/MinPriorityQueue.html +34 -35
  38. package/docs/classes/Navigator.html +10 -11
  39. package/docs/classes/ObjectDeque.html +25 -26
  40. package/docs/classes/PriorityQueue.html +32 -33
  41. package/docs/classes/Queue.html +14 -15
  42. package/docs/classes/RBTree.html +1 -2
  43. package/docs/classes/SegmentTree.html +12 -13
  44. package/docs/classes/SegmentTreeNode.html +26 -27
  45. package/docs/classes/SinglyLinkedList.html +248 -635
  46. package/docs/classes/SinglyLinkedListNode.html +39 -167
  47. package/docs/classes/SplayTree.html +1 -2
  48. package/docs/classes/Stack.html +12 -13
  49. package/docs/classes/TreeMultiSet.html +86 -87
  50. package/docs/classes/TreeNode.html +8 -9
  51. package/docs/classes/Trie.html +13 -14
  52. package/docs/classes/TrieNode.html +11 -12
  53. package/docs/classes/TwoThreeTree.html +1 -2
  54. package/docs/classes/UndirectedEdge.html +13 -14
  55. package/docs/classes/UndirectedGraph.html +35 -36
  56. package/docs/classes/UndirectedVertex.html +6 -7
  57. package/docs/classes/Vector2D.html +28 -29
  58. package/docs/enums/CP.html +4 -5
  59. package/docs/enums/FamilyPosition.html +4 -5
  60. package/docs/enums/LoopType.html +3 -4
  61. package/docs/index.html +2 -3
  62. package/docs/interfaces/AVLTreeDeleted.html +3 -4
  63. package/docs/interfaces/HeapOptions.html +2 -3
  64. package/docs/interfaces/IDirectedGraph.html +7 -8
  65. package/docs/interfaces/IGraph.html +19 -20
  66. package/docs/interfaces/NavigatorParams.html +5 -6
  67. package/docs/interfaces/PriorityQueueOptions.html +4 -5
  68. package/docs/modules.html +0 -2
  69. package/docs/types/BSTComparator.html +1 -2
  70. package/docs/types/BSTDeletedResult.html +1 -2
  71. package/docs/types/BinaryTreeDeleted.html +1 -2
  72. package/docs/types/BinaryTreeNodeId.html +1 -2
  73. package/docs/types/BinaryTreeNodePropertyName.html +1 -2
  74. package/docs/types/DFSOrderPattern.html +1 -2
  75. package/docs/types/DijkstraResult.html +1 -2
  76. package/docs/types/Direction.html +1 -2
  77. package/docs/types/DoublyLinkedListGetBy.html +1 -2
  78. package/docs/types/NodeOrPropertyName.html +1 -2
  79. package/docs/types/PriorityQueueComparator.html +1 -2
  80. package/docs/types/PriorityQueueDFSOrderPattern.html +1 -2
  81. package/docs/types/ResultByProperty.html +1 -2
  82. package/docs/types/ResultsByProperty.html +1 -2
  83. package/docs/types/SegmentTreeNodeVal.html +1 -2
  84. package/docs/types/SpecifyOptional.html +1 -2
  85. package/docs/types/Thunk.html +1 -2
  86. package/docs/types/ToThunkFn.html +1 -2
  87. package/docs/types/TopologicalStatus.html +1 -2
  88. package/docs/types/TreeMultiSetDeletedResult.html +1 -2
  89. package/docs/types/TrlAsyncFn.html +1 -2
  90. package/docs/types/TrlFn.html +1 -2
  91. package/docs/types/Turning.html +1 -2
  92. package/docs/types/VertexId.html +1 -2
  93. package/package.json +1 -3
  94. package/docs/interfaces/BinaryTreeNodeObj.html +0 -168
@@ -31,7 +31,7 @@
31
31
  <ul class="tsd-hierarchy">
32
32
  <li><a href="../classes/DirectedGraph.html" class="tsd-signature-type tsd-kind-class">DirectedGraph</a></li></ul></section><aside class="tsd-sources">
33
33
  <ul>
34
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/directed-graph.ts#L3">src/data-structures/types/directed-graph.ts:3</a></li></ul></aside>
34
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/directed-graph.ts#L3">src/data-structures/types/directed-graph.ts:3</a></li></ul></aside>
35
35
  <section class="tsd-panel-group tsd-index-group">
36
36
  <section class="tsd-panel tsd-index-panel">
37
37
  <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -60,7 +60,7 @@
60
60
  <h5><span class="tsd-kind-parameter">e</span>: <span class="tsd-signature-type tsd-kind-type-parameter">E</span></h5></li></ul></div>
61
61
  <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">V</span></h4><aside class="tsd-sources">
62
62
  <ul>
63
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/directed-graph.ts#L14">src/data-structures/types/directed-graph.ts:14</a></li></ul></aside></li></ul></section>
63
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/directed-graph.ts#L14">src/data-structures/types/directed-graph.ts:14</a></li></ul></aside></li></ul></section>
64
64
  <section class="tsd-panel tsd-member"><a id="getEdgeSrc" class="tsd-anchor"></a>
65
65
  <h3 class="tsd-anchor-link"><span>get<wbr/>Edge<wbr/>Src</span><a href="#getEdgeSrc" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
66
66
  <ul class="tsd-signatures">
@@ -73,7 +73,7 @@
73
73
  <h5><span class="tsd-kind-parameter">e</span>: <span class="tsd-signature-type tsd-kind-type-parameter">E</span></h5></li></ul></div>
74
74
  <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">V</span></h4><aside class="tsd-sources">
75
75
  <ul>
76
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/directed-graph.ts#L12">src/data-structures/types/directed-graph.ts:12</a></li></ul></aside></li></ul></section>
76
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/directed-graph.ts#L12">src/data-structures/types/directed-graph.ts:12</a></li></ul></aside></li></ul></section>
77
77
  <section class="tsd-panel tsd-member"><a id="inDegreeOf" class="tsd-anchor"></a>
78
78
  <h3 class="tsd-anchor-link"><span>in<wbr/>Degree<wbr/>Of</span><a href="#inDegreeOf" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
79
79
  <ul class="tsd-signatures">
@@ -86,7 +86,7 @@
86
86
  <h5><span class="tsd-kind-parameter">vertexOrId</span>: <a href="../types/VertexId.html" class="tsd-signature-type tsd-kind-type-alias">VertexId</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type tsd-kind-type-parameter">V</span></h5></li></ul></div>
87
87
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
88
88
  <ul>
89
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/directed-graph.ts#L8">src/data-structures/types/directed-graph.ts:8</a></li></ul></aside></li></ul></section>
89
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/directed-graph.ts#L8">src/data-structures/types/directed-graph.ts:8</a></li></ul></aside></li></ul></section>
90
90
  <section class="tsd-panel tsd-member"><a id="incomingEdgesOf" class="tsd-anchor"></a>
91
91
  <h3 class="tsd-anchor-link"><span>incoming<wbr/>Edges<wbr/>Of</span><a href="#incomingEdgesOf" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
92
92
  <ul class="tsd-signatures">
@@ -99,7 +99,7 @@
99
99
  <h5><span class="tsd-kind-parameter">vertex</span>: <span class="tsd-signature-type tsd-kind-type-parameter">V</span></h5></li></ul></div>
100
100
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type tsd-kind-type-parameter">E</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
101
101
  <ul>
102
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/directed-graph.ts#L4">src/data-structures/types/directed-graph.ts:4</a></li></ul></aside></li></ul></section>
102
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/directed-graph.ts#L4">src/data-structures/types/directed-graph.ts:4</a></li></ul></aside></li></ul></section>
103
103
  <section class="tsd-panel tsd-member"><a id="outDegreeOf" class="tsd-anchor"></a>
104
104
  <h3 class="tsd-anchor-link"><span>out<wbr/>Degree<wbr/>Of</span><a href="#outDegreeOf" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
105
105
  <ul class="tsd-signatures">
@@ -112,7 +112,7 @@
112
112
  <h5><span class="tsd-kind-parameter">vertexOrId</span>: <a href="../types/VertexId.html" class="tsd-signature-type tsd-kind-type-alias">VertexId</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type tsd-kind-type-parameter">V</span></h5></li></ul></div>
113
113
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
114
114
  <ul>
115
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/directed-graph.ts#L10">src/data-structures/types/directed-graph.ts:10</a></li></ul></aside></li></ul></section>
115
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/directed-graph.ts#L10">src/data-structures/types/directed-graph.ts:10</a></li></ul></aside></li></ul></section>
116
116
  <section class="tsd-panel tsd-member"><a id="outgoingEdgesOf" class="tsd-anchor"></a>
117
117
  <h3 class="tsd-anchor-link"><span>outgoing<wbr/>Edges<wbr/>Of</span><a href="#outgoingEdgesOf" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
118
118
  <ul class="tsd-signatures">
@@ -125,7 +125,7 @@
125
125
  <h5><span class="tsd-kind-parameter">vertex</span>: <span class="tsd-signature-type tsd-kind-type-parameter">V</span></h5></li></ul></div>
126
126
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type tsd-kind-type-parameter">E</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
127
127
  <ul>
128
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/directed-graph.ts#L6">src/data-structures/types/directed-graph.ts:6</a></li></ul></aside></li></ul></section></section></div>
128
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/directed-graph.ts#L6">src/data-structures/types/directed-graph.ts:6</a></li></ul></aside></li></ul></section></section></div>
129
129
  <div class="col-sidebar">
130
130
  <div class="page-menu">
131
131
  <div class="tsd-navigation settings">
@@ -208,7 +208,6 @@
208
208
  <li><a href="../classes/UndirectedVertex.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Undirected<wbr/>Vertex</span></a></li>
209
209
  <li><a href="../classes/Vector2D.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Vector2D</span></a></li>
210
210
  <li><a href="AVLTreeDeleted.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g></svg><span>AVLTree<wbr/>Deleted</span></a></li>
211
- <li><a href="BinaryTreeNodeObj.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Binary<wbr/>Tree<wbr/>Node<wbr/>Obj</span></a></li>
212
211
  <li><a href="HeapOptions.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Heap<wbr/>Options</span></a></li>
213
212
  <li><a href="IDirectedGraph.html" class="current"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IDirected<wbr/>Graph</span></a></li>
214
213
  <li><a href="IGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IGraph</span></a></li>
@@ -31,7 +31,7 @@
31
31
  <ul class="tsd-hierarchy">
32
32
  <li><a href="../classes/AbstractGraph.html" class="tsd-signature-type tsd-kind-class">AbstractGraph</a></li></ul></section><aside class="tsd-sources">
33
33
  <ul>
34
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L6">src/data-structures/types/abstract-graph.ts:6</a></li></ul></aside>
34
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L6">src/data-structures/types/abstract-graph.ts:6</a></li></ul></aside>
35
35
  <section class="tsd-panel-group tsd-index-group">
36
36
  <section class="tsd-panel tsd-index-panel">
37
37
  <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -72,7 +72,7 @@
72
72
  <h5><span class="tsd-kind-parameter">edge</span>: <span class="tsd-signature-type tsd-kind-type-parameter">E</span></h5></li></ul></div>
73
73
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
74
74
  <ul>
75
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L36">src/data-structures/types/abstract-graph.ts:36</a></li></ul></aside></li></ul></section>
75
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L36">src/data-structures/types/abstract-graph.ts:36</a></li></ul></aside></li></ul></section>
76
76
  <section class="tsd-panel tsd-member"><a id="addVertex" class="tsd-anchor"></a>
77
77
  <h3 class="tsd-anchor-link"><span>add<wbr/>Vertex</span><a href="#addVertex" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
78
78
  <ul class="tsd-signatures">
@@ -85,7 +85,7 @@
85
85
  <h5><span class="tsd-kind-parameter">v</span>: <span class="tsd-signature-type tsd-kind-type-parameter">V</span></h5></li></ul></div>
86
86
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
87
87
  <ul>
88
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L16">src/data-structures/types/abstract-graph.ts:16</a></li></ul></aside></li></ul></section>
88
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L16">src/data-structures/types/abstract-graph.ts:16</a></li></ul></aside></li></ul></section>
89
89
  <section class="tsd-panel tsd-member"><a id="degreeOf" class="tsd-anchor"></a>
90
90
  <h3 class="tsd-anchor-link"><span>degree<wbr/>Of</span><a href="#degreeOf" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
91
91
  <ul class="tsd-signatures">
@@ -98,7 +98,7 @@
98
98
  <h5><span class="tsd-kind-parameter">vertexOrId</span>: <a href="../types/VertexId.html" class="tsd-signature-type tsd-kind-type-alias">VertexId</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type tsd-kind-type-parameter">V</span></h5></li></ul></div>
99
99
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
100
100
  <ul>
101
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L22">src/data-structures/types/abstract-graph.ts:22</a></li></ul></aside></li></ul></section>
101
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L22">src/data-structures/types/abstract-graph.ts:22</a></li></ul></aside></li></ul></section>
102
102
  <section class="tsd-panel tsd-member"><a id="edgeSet" class="tsd-anchor"></a>
103
103
  <h3 class="tsd-anchor-link"><span>edge<wbr/>Set</span><a href="#edgeSet" 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 tsd-kind-type-parameter">E</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
108
108
  <ul>
109
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L34">src/data-structures/types/abstract-graph.ts:34</a></li></ul></aside></li></ul></section>
109
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L34">src/data-structures/types/abstract-graph.ts:34</a></li></ul></aside></li></ul></section>
110
110
  <section class="tsd-panel tsd-member"><a id="edgesOf" class="tsd-anchor"></a>
111
111
  <h3 class="tsd-anchor-link"><span>edges<wbr/>Of</span><a href="#edgesOf" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
112
112
  <ul class="tsd-signatures">
@@ -119,7 +119,7 @@
119
119
  <h5><span class="tsd-kind-parameter">vertexOrId</span>: <a href="../types/VertexId.html" class="tsd-signature-type tsd-kind-type-alias">VertexId</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type tsd-kind-type-parameter">V</span></h5></li></ul></div>
120
120
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type tsd-kind-type-parameter">E</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
121
121
  <ul>
122
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L24">src/data-structures/types/abstract-graph.ts:24</a></li></ul></aside></li></ul></section>
122
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L24">src/data-structures/types/abstract-graph.ts:24</a></li></ul></aside></li></ul></section>
123
123
  <section class="tsd-panel tsd-member"><a id="getEdge" class="tsd-anchor"></a>
124
124
  <h3 class="tsd-anchor-link"><span>get<wbr/>Edge</span><a href="#getEdge" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
125
125
  <ul class="tsd-signatures">
@@ -134,7 +134,7 @@
134
134
  <h5><span class="tsd-kind-parameter">destOrId</span>: <a href="../types/VertexId.html" class="tsd-signature-type tsd-kind-type-alias">VertexId</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type tsd-kind-type-parameter">V</span></h5></li></ul></div>
135
135
  <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">E</span></h4><aside class="tsd-sources">
136
136
  <ul>
137
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L30">src/data-structures/types/abstract-graph.ts:30</a></li></ul></aside></li></ul></section>
137
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L30">src/data-structures/types/abstract-graph.ts:30</a></li></ul></aside></li></ul></section>
138
138
  <section class="tsd-panel tsd-member"><a id="getMinPathBetween" class="tsd-anchor"></a>
139
139
  <h3 class="tsd-anchor-link"><span>get<wbr/>Min<wbr/>Path<wbr/>Between</span><a href="#getMinPathBetween" 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">
@@ -151,7 +151,7 @@
151
151
  <h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">isWeight</span>: <span class="tsd-signature-type">boolean</span></h5></li></ul></div>
152
152
  <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">V</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
153
153
  <ul>
154
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L48">src/data-structures/types/abstract-graph.ts:48</a></li></ul></aside></li></ul></section>
154
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L48">src/data-structures/types/abstract-graph.ts:48</a></li></ul></aside></li></ul></section>
155
155
  <section class="tsd-panel tsd-member"><a id="getNeighbors" class="tsd-anchor"></a>
156
156
  <h3 class="tsd-anchor-link"><span>get<wbr/>Neighbors</span><a href="#getNeighbors" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
157
157
  <ul class="tsd-signatures">
@@ -164,7 +164,7 @@
164
164
  <h5><span class="tsd-kind-parameter">vertexOrId</span>: <a href="../types/VertexId.html" class="tsd-signature-type tsd-kind-type-alias">VertexId</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type tsd-kind-type-parameter">V</span></h5></li></ul></div>
165
165
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type tsd-kind-type-parameter">V</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
166
166
  <ul>
167
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L50">src/data-structures/types/abstract-graph.ts:50</a></li></ul></aside></li></ul></section>
167
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L50">src/data-structures/types/abstract-graph.ts:50</a></li></ul></aside></li></ul></section>
168
168
  <section class="tsd-panel tsd-member"><a id="getVertex" class="tsd-anchor"></a>
169
169
  <h3 class="tsd-anchor-link"><span>get<wbr/>Vertex</span><a href="#getVertex" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
170
170
  <ul class="tsd-signatures">
@@ -177,7 +177,7 @@
177
177
  <h5><span class="tsd-kind-parameter">vertexOrId</span>: <a href="../types/VertexId.html" class="tsd-signature-type tsd-kind-type-alias">VertexId</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type tsd-kind-type-parameter">V</span></h5></li></ul></div>
178
178
  <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">V</span></h4><aside class="tsd-sources">
179
179
  <ul>
180
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L10">src/data-structures/types/abstract-graph.ts:10</a></li></ul></aside></li></ul></section>
180
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L10">src/data-structures/types/abstract-graph.ts:10</a></li></ul></aside></li></ul></section>
181
181
  <section class="tsd-panel tsd-member"><a id="getVertexId" class="tsd-anchor"></a>
182
182
  <h3 class="tsd-anchor-link"><span>get<wbr/>Vertex<wbr/>Id</span><a href="#getVertexId" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
183
183
  <ul class="tsd-signatures">
@@ -190,7 +190,7 @@
190
190
  <h5><span class="tsd-kind-parameter">vertexOrId</span>: <a href="../types/VertexId.html" class="tsd-signature-type tsd-kind-type-alias">VertexId</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type tsd-kind-type-parameter">V</span></h5></li></ul></div>
191
191
  <h4 class="tsd-returns-title">Returns <a href="../types/VertexId.html" class="tsd-signature-type tsd-kind-type-alias">VertexId</a></h4><aside class="tsd-sources">
192
192
  <ul>
193
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L12">src/data-structures/types/abstract-graph.ts:12</a></li></ul></aside></li></ul></section>
193
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L12">src/data-structures/types/abstract-graph.ts:12</a></li></ul></aside></li></ul></section>
194
194
  <section class="tsd-panel tsd-member"><a id="hasEdge" class="tsd-anchor"></a>
195
195
  <h3 class="tsd-anchor-link"><span>has<wbr/>Edge</span><a href="#hasEdge" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
196
196
  <ul class="tsd-signatures">
@@ -205,7 +205,7 @@
205
205
  <h5><span class="tsd-kind-parameter">dest</span>: <a href="../types/VertexId.html" class="tsd-signature-type tsd-kind-type-alias">VertexId</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type tsd-kind-type-parameter">V</span></h5></li></ul></div>
206
206
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
207
207
  <ul>
208
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L26">src/data-structures/types/abstract-graph.ts:26</a></li></ul></aside></li></ul></section>
208
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L26">src/data-structures/types/abstract-graph.ts:26</a></li></ul></aside></li></ul></section>
209
209
  <section class="tsd-panel tsd-member"><a id="hasVertex" class="tsd-anchor"></a>
210
210
  <h3 class="tsd-anchor-link"><span>has<wbr/>Vertex</span><a href="#hasVertex" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
211
211
  <ul class="tsd-signatures">
@@ -218,7 +218,7 @@
218
218
  <h5><span class="tsd-kind-parameter">vertexOrId</span>: <a href="../types/VertexId.html" class="tsd-signature-type tsd-kind-type-alias">VertexId</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type tsd-kind-type-parameter">V</span></h5></li></ul></div>
219
219
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
220
220
  <ul>
221
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L8">src/data-structures/types/abstract-graph.ts:8</a></li></ul></aside></li></ul></section>
221
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L8">src/data-structures/types/abstract-graph.ts:8</a></li></ul></aside></li></ul></section>
222
222
  <section class="tsd-panel tsd-member"><a id="removeAllVertices" class="tsd-anchor"></a>
223
223
  <h3 class="tsd-anchor-link"><span>remove<wbr/>All<wbr/>Vertices</span><a href="#removeAllVertices" 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">
@@ -231,7 +231,7 @@
231
231
  <h5><span class="tsd-kind-parameter">vertices</span>: <span class="tsd-signature-type tsd-kind-type-parameter">V</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> | </span><a href="../types/VertexId.html" class="tsd-signature-type tsd-kind-type-alias">VertexId</a><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
232
232
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
233
233
  <ul>
234
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L20">src/data-structures/types/abstract-graph.ts:20</a></li></ul></aside></li></ul></section>
234
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L20">src/data-structures/types/abstract-graph.ts:20</a></li></ul></aside></li></ul></section>
235
235
  <section class="tsd-panel tsd-member"><a id="removeEdge" class="tsd-anchor"></a>
236
236
  <h3 class="tsd-anchor-link"><span>remove<wbr/>Edge</span><a href="#removeEdge" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
237
237
  <ul class="tsd-signatures">
@@ -244,7 +244,7 @@
244
244
  <h5><span class="tsd-kind-parameter">edge</span>: <span class="tsd-signature-type tsd-kind-type-parameter">E</span></h5></li></ul></div>
245
245
  <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">E</span></h4><aside class="tsd-sources">
246
246
  <ul>
247
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L40">src/data-structures/types/abstract-graph.ts:40</a></li></ul></aside></li></ul></section>
247
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L40">src/data-structures/types/abstract-graph.ts:40</a></li></ul></aside></li></ul></section>
248
248
  <section class="tsd-panel tsd-member"><a id="removeEdgeBetween" class="tsd-anchor"></a>
249
249
  <h3 class="tsd-anchor-link"><span>remove<wbr/>Edge<wbr/>Between</span><a href="#removeEdgeBetween" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
250
250
  <ul class="tsd-signatures">
@@ -259,7 +259,7 @@
259
259
  <h5><span class="tsd-kind-parameter">destOrId</span>: <a href="../types/VertexId.html" class="tsd-signature-type tsd-kind-type-alias">VertexId</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type tsd-kind-type-parameter">V</span></h5></li></ul></div>
260
260
  <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">E</span></h4><aside class="tsd-sources">
261
261
  <ul>
262
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L38">src/data-structures/types/abstract-graph.ts:38</a></li></ul></aside></li></ul></section>
262
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L38">src/data-structures/types/abstract-graph.ts:38</a></li></ul></aside></li></ul></section>
263
263
  <section class="tsd-panel tsd-member"><a id="removeVertex" class="tsd-anchor"></a>
264
264
  <h3 class="tsd-anchor-link"><span>remove<wbr/>Vertex</span><a href="#removeVertex" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
265
265
  <ul class="tsd-signatures">
@@ -272,7 +272,7 @@
272
272
  <h5><span class="tsd-kind-parameter">vertexOrId</span>: <a href="../types/VertexId.html" class="tsd-signature-type tsd-kind-type-alias">VertexId</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type tsd-kind-type-parameter">V</span></h5></li></ul></div>
273
273
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
274
274
  <ul>
275
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L18">src/data-structures/types/abstract-graph.ts:18</a></li></ul></aside></li></ul></section>
275
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L18">src/data-structures/types/abstract-graph.ts:18</a></li></ul></aside></li></ul></section>
276
276
  <section class="tsd-panel tsd-member"><a id="setEdgeWeight" class="tsd-anchor"></a>
277
277
  <h3 class="tsd-anchor-link"><span>set<wbr/>Edge<wbr/>Weight</span><a href="#setEdgeWeight" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
278
278
  <ul class="tsd-signatures">
@@ -289,7 +289,7 @@
289
289
  <h5><span class="tsd-kind-parameter">weight</span>: <span class="tsd-signature-type">number</span></h5></li></ul></div>
290
290
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
291
291
  <ul>
292
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L46">src/data-structures/types/abstract-graph.ts:46</a></li></ul></aside></li></ul></section>
292
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L46">src/data-structures/types/abstract-graph.ts:46</a></li></ul></aside></li></ul></section>
293
293
  <section class="tsd-panel tsd-member"><a id="vertexSet" class="tsd-anchor"></a>
294
294
  <h3 class="tsd-anchor-link"><span>vertex<wbr/>Set</span><a href="#vertexSet" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
295
295
  <ul class="tsd-signatures">
@@ -297,7 +297,7 @@
297
297
  <li class="tsd-description">
298
298
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">Map</span><span class="tsd-signature-symbol">&lt;</span><a href="../types/VertexId.html" class="tsd-signature-type tsd-kind-type-alias">VertexId</a><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type tsd-kind-type-parameter">V</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
299
299
  <ul>
300
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/abstract-graph.ts#L14">src/data-structures/types/abstract-graph.ts:14</a></li></ul></aside></li></ul></section></section></div>
300
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/abstract-graph.ts#L14">src/data-structures/types/abstract-graph.ts:14</a></li></ul></aside></li></ul></section></section></div>
301
301
  <div class="col-sidebar">
302
302
  <div class="page-menu">
303
303
  <div class="tsd-navigation settings">
@@ -392,7 +392,6 @@
392
392
  <li><a href="../classes/UndirectedVertex.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Undirected<wbr/>Vertex</span></a></li>
393
393
  <li><a href="../classes/Vector2D.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Vector2D</span></a></li>
394
394
  <li><a href="AVLTreeDeleted.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g></svg><span>AVLTree<wbr/>Deleted</span></a></li>
395
- <li><a href="BinaryTreeNodeObj.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Binary<wbr/>Tree<wbr/>Node<wbr/>Obj</span></a></li>
396
395
  <li><a href="HeapOptions.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Heap<wbr/>Options</span></a></li>
397
396
  <li><a href="IDirectedGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IDirected<wbr/>Graph</span></a></li>
398
397
  <li><a href="IGraph.html" class="current"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IGraph</span></a></li>
@@ -25,7 +25,7 @@
25
25
  <ul class="tsd-hierarchy">
26
26
  <li><span class="target">NavigatorParams</span></li></ul></section><aside class="tsd-sources">
27
27
  <ul>
28
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/navigator.ts#L4">src/data-structures/types/navigator.ts:4</a></li></ul></aside>
28
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/navigator.ts#L4">src/data-structures/types/navigator.ts:4</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">
@@ -53,12 +53,12 @@
53
53
  <li class="tsd-parameter">
54
54
  <h5><span class="tsd-kind-property">cur</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">]</span></h5></li></ul></div><aside class="tsd-sources">
55
55
  <ul>
56
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/navigator.ts#L8">src/data-structures/types/navigator.ts:8</a></li></ul></aside></section>
56
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/navigator.ts#L8">src/data-structures/types/navigator.ts:8</a></li></ul></aside></section>
57
57
  <section class="tsd-panel tsd-member"><a id="matrix" class="tsd-anchor"></a>
58
58
  <h3 class="tsd-anchor-link"><span>matrix</span><a href="#matrix" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
59
59
  <div class="tsd-signature"><span class="tsd-kind-property">matrix</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources">
60
60
  <ul>
61
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/navigator.ts#L5">src/data-structures/types/navigator.ts:5</a></li></ul></aside></section>
61
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/navigator.ts#L5">src/data-structures/types/navigator.ts:5</a></li></ul></aside></section>
62
62
  <section class="tsd-panel tsd-member"><a id="onMove" class="tsd-anchor"></a>
63
63
  <h3 class="tsd-anchor-link"><span>on<wbr/>Move</span><a href="#onMove" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
64
64
  <div class="tsd-signature"><span class="tsd-kind-property">on<wbr/>Move</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">cur</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">)</span></div>
@@ -76,12 +76,12 @@
76
76
  <h5><span class="tsd-kind-parameter">cur</span>: <span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">]</span></h5></li></ul></div>
77
77
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></li></ul></li></ul></div><aside class="tsd-sources">
78
78
  <ul>
79
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/navigator.ts#L7">src/data-structures/types/navigator.ts:7</a></li></ul></aside></section>
79
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/navigator.ts#L7">src/data-structures/types/navigator.ts:7</a></li></ul></aside></section>
80
80
  <section class="tsd-panel tsd-member"><a id="turning" class="tsd-anchor"></a>
81
81
  <h3 class="tsd-anchor-link"><span>turning</span><a href="#turning" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
82
82
  <div class="tsd-signature"><span class="tsd-kind-property">turning</span><span class="tsd-signature-symbol">:</span> <a href="../types/Turning.html" class="tsd-signature-type tsd-kind-type-alias">Turning</a></div><aside class="tsd-sources">
83
83
  <ul>
84
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/navigator.ts#L6">src/data-structures/types/navigator.ts:6</a></li></ul></aside></section></section></div>
84
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/navigator.ts#L6">src/data-structures/types/navigator.ts:6</a></li></ul></aside></section></section></div>
85
85
  <div class="col-sidebar">
86
86
  <div class="page-menu">
87
87
  <div class="tsd-navigation settings">
@@ -162,7 +162,6 @@
162
162
  <li><a href="../classes/UndirectedVertex.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Undirected<wbr/>Vertex</span></a></li>
163
163
  <li><a href="../classes/Vector2D.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Vector2D</span></a></li>
164
164
  <li><a href="AVLTreeDeleted.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g></svg><span>AVLTree<wbr/>Deleted</span></a></li>
165
- <li><a href="BinaryTreeNodeObj.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Binary<wbr/>Tree<wbr/>Node<wbr/>Obj</span></a></li>
166
165
  <li><a href="HeapOptions.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Heap<wbr/>Options</span></a></li>
167
166
  <li><a href="IDirectedGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IDirected<wbr/>Graph</span></a></li>
168
167
  <li><a href="IGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IGraph</span></a></li>
@@ -25,7 +25,7 @@
25
25
  <ul class="tsd-hierarchy">
26
26
  <li><span class="target">PriorityQueueOptions</span></li></ul></section><aside class="tsd-sources">
27
27
  <ul>
28
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/priority-queue.ts#L3">src/data-structures/types/priority-queue.ts:3</a></li></ul></aside>
28
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/priority-queue.ts#L3">src/data-structures/types/priority-queue.ts:3</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">
@@ -43,17 +43,17 @@
43
43
  <h3 class="tsd-anchor-link"><span>comparator</span><a href="#comparator" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><g stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round" id="icon-anchor"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></g></svg></a></h3>
44
44
  <div class="tsd-signature"><span class="tsd-kind-property">comparator</span><span class="tsd-signature-symbol">:</span> <a href="../types/PriorityQueueComparator.html" class="tsd-signature-type tsd-kind-type-alias">PriorityQueueComparator</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span></div><aside class="tsd-sources">
45
45
  <ul>
46
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/priority-queue.ts#L6">src/data-structures/types/priority-queue.ts:6</a></li></ul></aside></section>
46
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/priority-queue.ts#L6">src/data-structures/types/priority-queue.ts:6</a></li></ul></aside></section>
47
47
  <section class="tsd-panel tsd-member"><a id="isFix" class="tsd-anchor"></a>
48
48
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>is<wbr/>Fix</span><a href="#isFix" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
49
49
  <div class="tsd-signature"><span class="tsd-kind-property">is<wbr/>Fix</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources">
50
50
  <ul>
51
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/priority-queue.ts#L5">src/data-structures/types/priority-queue.ts:5</a></li></ul></aside></section>
51
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/priority-queue.ts#L5">src/data-structures/types/priority-queue.ts:5</a></li></ul></aside></section>
52
52
  <section class="tsd-panel tsd-member"><a id="nodes" class="tsd-anchor"></a>
53
53
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>nodes</span><a href="#nodes" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
54
54
  <div class="tsd-signature"><span class="tsd-kind-property">nodes</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources">
55
55
  <ul>
56
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/priority-queue.ts#L4">src/data-structures/types/priority-queue.ts:4</a></li></ul></aside></section></section></div>
56
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/priority-queue.ts#L4">src/data-structures/types/priority-queue.ts:4</a></li></ul></aside></section></section></div>
57
57
  <div class="col-sidebar">
58
58
  <div class="page-menu">
59
59
  <div class="tsd-navigation settings">
@@ -133,7 +133,6 @@
133
133
  <li><a href="../classes/UndirectedVertex.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Undirected<wbr/>Vertex</span></a></li>
134
134
  <li><a href="../classes/Vector2D.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Vector2D</span></a></li>
135
135
  <li><a href="AVLTreeDeleted.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g></svg><span>AVLTree<wbr/>Deleted</span></a></li>
136
- <li><a href="BinaryTreeNodeObj.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Binary<wbr/>Tree<wbr/>Node<wbr/>Obj</span></a></li>
137
136
  <li><a href="HeapOptions.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Heap<wbr/>Options</span></a></li>
138
137
  <li><a href="IDirectedGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IDirected<wbr/>Graph</span></a></li>
139
138
  <li><a href="IGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IGraph</span></a></li>
package/docs/modules.html CHANGED
@@ -77,7 +77,6 @@
77
77
  <section class="tsd-index-section">
78
78
  <h3 class="tsd-index-heading">Interfaces</h3>
79
79
  <div class="tsd-index-list"><a href="interfaces/AVLTreeDeleted.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g></svg><span>AVLTree<wbr/>Deleted</span></a>
80
- <a href="interfaces/BinaryTreeNodeObj.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Binary<wbr/>Tree<wbr/>Node<wbr/>Obj</span></a>
81
80
  <a href="interfaces/HeapOptions.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Heap<wbr/>Options</span></a>
82
81
  <a href="interfaces/IDirectedGraph.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IDirected<wbr/>Graph</span></a>
83
82
  <a href="interfaces/IGraph.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IGraph</span></a>
@@ -183,7 +182,6 @@
183
182
  <li><a href="classes/UndirectedVertex.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Undirected<wbr/>Vertex</span></a></li>
184
183
  <li><a href="classes/Vector2D.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Vector2D</span></a></li>
185
184
  <li><a href="interfaces/AVLTreeDeleted.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>AVLTree<wbr/>Deleted</span></a></li>
186
- <li><a href="interfaces/BinaryTreeNodeObj.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Binary<wbr/>Tree<wbr/>Node<wbr/>Obj</span></a></li>
187
185
  <li><a href="interfaces/HeapOptions.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Heap<wbr/>Options</span></a></li>
188
186
  <li><a href="interfaces/IDirectedGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IDirected<wbr/>Graph</span></a></li>
189
187
  <li><a href="interfaces/IGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IGraph</span></a></li>
@@ -32,7 +32,7 @@
32
32
  <h5><span class="tsd-kind-parameter">b</span>: <a href="BinaryTreeNodeId.html" class="tsd-signature-type tsd-kind-type-alias">BinaryTreeNodeId</a></h5></li></ul></div>
33
33
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4></li></ul></li></ul></div><aside class="tsd-sources">
34
34
  <ul>
35
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/bst.ts#L4">src/data-structures/types/bst.ts:4</a></li></ul></aside></div>
35
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/bst.ts#L4">src/data-structures/types/bst.ts:4</a></li></ul></aside></div>
36
36
  <div class="col-sidebar">
37
37
  <div class="page-menu">
38
38
  <div class="tsd-navigation settings">
@@ -105,7 +105,6 @@
105
105
  <li><a href="../classes/UndirectedVertex.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Undirected<wbr/>Vertex</span></a></li>
106
106
  <li><a href="../classes/Vector2D.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Vector2D</span></a></li>
107
107
  <li><a href="../interfaces/AVLTreeDeleted.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g></svg><span>AVLTree<wbr/>Deleted</span></a></li>
108
- <li><a href="../interfaces/BinaryTreeNodeObj.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Binary<wbr/>Tree<wbr/>Node<wbr/>Obj</span></a></li>
109
108
  <li><a href="../interfaces/HeapOptions.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Heap<wbr/>Options</span></a></li>
110
109
  <li><a href="../interfaces/IDirectedGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IDirected<wbr/>Graph</span></a></li>
111
110
  <li><a href="../interfaces/IGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IGraph</span></a></li>
@@ -29,7 +29,7 @@
29
29
  <li class="tsd-parameter">
30
30
  <h5><span class="tsd-kind-property">need<wbr/>Balanced</span><span class="tsd-signature-symbol">: </span><a href="../classes/BSTNode.html" class="tsd-signature-type tsd-kind-class">BSTNode</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span></h5></li></ul></div><aside class="tsd-sources">
31
31
  <ul>
32
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/bst.ts#L5">src/data-structures/types/bst.ts:5</a></li></ul></aside></div>
32
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/bst.ts#L5">src/data-structures/types/bst.ts:5</a></li></ul></aside></div>
33
33
  <div class="col-sidebar">
34
34
  <div class="page-menu">
35
35
  <div class="tsd-navigation settings">
@@ -102,7 +102,6 @@
102
102
  <li><a href="../classes/UndirectedVertex.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Undirected<wbr/>Vertex</span></a></li>
103
103
  <li><a href="../classes/Vector2D.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Vector2D</span></a></li>
104
104
  <li><a href="../interfaces/AVLTreeDeleted.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g></svg><span>AVLTree<wbr/>Deleted</span></a></li>
105
- <li><a href="../interfaces/BinaryTreeNodeObj.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Binary<wbr/>Tree<wbr/>Node<wbr/>Obj</span></a></li>
106
105
  <li><a href="../interfaces/HeapOptions.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Heap<wbr/>Options</span></a></li>
107
106
  <li><a href="../interfaces/IDirectedGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IDirected<wbr/>Graph</span></a></li>
108
107
  <li><a href="../interfaces/IGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IGraph</span></a></li>
@@ -29,7 +29,7 @@
29
29
  <li class="tsd-parameter">
30
30
  <h5><span class="tsd-kind-property">need<wbr/>Balanced</span><span class="tsd-signature-symbol">: </span><a href="../classes/BinaryTreeNode.html" class="tsd-signature-type tsd-kind-class">BinaryTreeNode</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span></h5></li></ul></div><aside class="tsd-sources">
31
31
  <ul>
32
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/binary-tree.ts#L7">src/data-structures/types/binary-tree.ts:7</a></li></ul></aside></div>
32
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/binary-tree.ts#L7">src/data-structures/types/binary-tree.ts:7</a></li></ul></aside></div>
33
33
  <div class="col-sidebar">
34
34
  <div class="page-menu">
35
35
  <div class="tsd-navigation settings">
@@ -102,7 +102,6 @@
102
102
  <li><a href="../classes/UndirectedVertex.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Undirected<wbr/>Vertex</span></a></li>
103
103
  <li><a href="../classes/Vector2D.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Vector2D</span></a></li>
104
104
  <li><a href="../interfaces/AVLTreeDeleted.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g></svg><span>AVLTree<wbr/>Deleted</span></a></li>
105
- <li><a href="../interfaces/BinaryTreeNodeObj.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Binary<wbr/>Tree<wbr/>Node<wbr/>Obj</span></a></li>
106
105
  <li><a href="../interfaces/HeapOptions.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Heap<wbr/>Options</span></a></li>
107
106
  <li><a href="../interfaces/IDirectedGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IDirected<wbr/>Graph</span></a></li>
108
107
  <li><a href="../interfaces/IGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IGraph</span></a></li>
@@ -17,7 +17,7 @@
17
17
  <h1>Type alias BinaryTreeNodeId</h1></div>
18
18
  <div class="tsd-signature"><span class="tsd-kind-type-alias">Binary<wbr/>Tree<wbr/>Node<wbr/>Id</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
19
19
  <ul>
20
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/binary-tree.ts#L6">src/data-structures/types/binary-tree.ts:6</a></li></ul></aside></div>
20
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/binary-tree.ts#L6">src/data-structures/types/binary-tree.ts:6</a></li></ul></aside></div>
21
21
  <div class="col-sidebar">
22
22
  <div class="page-menu">
23
23
  <div class="tsd-navigation settings">
@@ -90,7 +90,6 @@
90
90
  <li><a href="../classes/UndirectedVertex.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Undirected<wbr/>Vertex</span></a></li>
91
91
  <li><a href="../classes/Vector2D.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Vector2D</span></a></li>
92
92
  <li><a href="../interfaces/AVLTreeDeleted.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g></svg><span>AVLTree<wbr/>Deleted</span></a></li>
93
- <li><a href="../interfaces/BinaryTreeNodeObj.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Binary<wbr/>Tree<wbr/>Node<wbr/>Obj</span></a></li>
94
93
  <li><a href="../interfaces/HeapOptions.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Heap<wbr/>Options</span></a></li>
95
94
  <li><a href="../interfaces/IDirectedGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IDirected<wbr/>Graph</span></a></li>
96
95
  <li><a href="../interfaces/IGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IGraph</span></a></li>
@@ -17,7 +17,7 @@
17
17
  <h1>Type alias BinaryTreeNodePropertyName</h1></div>
18
18
  <div class="tsd-signature"><span class="tsd-kind-type-alias">Binary<wbr/>Tree<wbr/>Node<wbr/>Property<wbr/>Name</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;id&quot;</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">&quot;val&quot;</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">&quot;count&quot;</span></div><aside class="tsd-sources">
19
19
  <ul>
20
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/binary-tree.ts#L3">src/data-structures/types/binary-tree.ts:3</a></li></ul></aside></div>
20
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/binary-tree.ts#L3">src/data-structures/types/binary-tree.ts:3</a></li></ul></aside></div>
21
21
  <div class="col-sidebar">
22
22
  <div class="page-menu">
23
23
  <div class="tsd-navigation settings">
@@ -90,7 +90,6 @@
90
90
  <li><a href="../classes/UndirectedVertex.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Undirected<wbr/>Vertex</span></a></li>
91
91
  <li><a href="../classes/Vector2D.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Vector2D</span></a></li>
92
92
  <li><a href="../interfaces/AVLTreeDeleted.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g></svg><span>AVLTree<wbr/>Deleted</span></a></li>
93
- <li><a href="../interfaces/BinaryTreeNodeObj.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Binary<wbr/>Tree<wbr/>Node<wbr/>Obj</span></a></li>
94
93
  <li><a href="../interfaces/HeapOptions.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Heap<wbr/>Options</span></a></li>
95
94
  <li><a href="../interfaces/IDirectedGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IDirected<wbr/>Graph</span></a></li>
96
95
  <li><a href="../interfaces/IGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IGraph</span></a></li>
@@ -17,7 +17,7 @@
17
17
  <h1>Type alias DFSOrderPattern</h1></div>
18
18
  <div class="tsd-signature"><span class="tsd-kind-type-alias">DFSOrder<wbr/>Pattern</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;in&quot;</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">&quot;pre&quot;</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">&quot;post&quot;</span></div><aside class="tsd-sources">
19
19
  <ul>
20
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/422c24c/src/data-structures/types/binary-tree.ts#L5">src/data-structures/types/binary-tree.ts:5</a></li></ul></aside></div>
20
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/dcec645/src/data-structures/types/binary-tree.ts#L5">src/data-structures/types/binary-tree.ts:5</a></li></ul></aside></div>
21
21
  <div class="col-sidebar">
22
22
  <div class="page-menu">
23
23
  <div class="tsd-navigation settings">
@@ -90,7 +90,6 @@
90
90
  <li><a href="../classes/UndirectedVertex.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Undirected<wbr/>Vertex</span></a></li>
91
91
  <li><a href="../classes/Vector2D.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-128"></use></svg><span>Vector2D</span></a></li>
92
92
  <li><a href="../interfaces/AVLTreeDeleted.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g></svg><span>AVLTree<wbr/>Deleted</span></a></li>
93
- <li><a href="../interfaces/BinaryTreeNodeObj.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Binary<wbr/>Tree<wbr/>Node<wbr/>Obj</span></a></li>
94
93
  <li><a href="../interfaces/HeapOptions.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>Heap<wbr/>Options</span></a></li>
95
94
  <li><a href="../interfaces/IDirectedGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IDirected<wbr/>Graph</span></a></li>
96
95
  <li><a href="../interfaces/IGraph.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-256"></use></svg><span>IGraph</span></a></li>