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
@@ -9,8 +9,3 @@ export type BinaryTreeDeleted<T> = {
9
9
  };
10
10
  export type ResultByProperty<T> = T | BinaryTreeNode<T> | number | BinaryTreeNodeId;
11
11
  export type ResultsByProperty<T> = ResultByProperty<T>[];
12
- export interface BinaryTreeNodeObj<T> {
13
- id: BinaryTreeNodeId;
14
- val: T;
15
- count?: number;
16
- }