data-structure-typed/src
Revone a008a33a30 style: Utilize the built-in _dfs method across all binary tree data structures to optimize the search method.
feat: The search and rangeSearch methods in binary trees now default to in-order traversal for producing ordered results.
docs: Add sample code for AVLTree. Explicitly document method parameter types for all binary tree data structures.
2024-12-02 20:35:46 +13:00
..
common feat: Add a rangeSearch method to binary search tree data structures and support tuple parameters as the query range. 2024-11-23 22:49:36 +13:00
data-structures style: Utilize the built-in _dfs method across all binary tree data structures to optimize the search method. 2024-12-02 20:35:46 +13:00
interfaces fix: Discard the awkward type-safe implementation in the binary tree data structure where subclasses need to pass the node type and tree type back to the parent class. 2024-11-28 19:37:51 +13:00
types feat: Allow BinaryTree to support adding duplicate keys. docs: BinaryTree 2024-12-02 14:32:43 +13:00
utils docs: playground project added 2024-11-30 21:50:45 +13:00
index.ts feat: add range search functionality to BST 2024-11-22 11:23:57 +13:00