1.0.1 • Published 8 months ago
@terika/balanced-bst v1.0.1
Balanced Binary Search Tree
What is this project about?
This project is my implementation of balanced binary search tree
List of functions
- insert(value)
- deleteItem(value)
- find(value)
- levelOrder(callback)
- inOrder(callback)
- preOrder(callback)
- postOrder(callback)
- height(node)
- depth(node)
- isBalanced()
- rebalance()