@terika/balanced-bst
v1.0.1
Published
This is an implementation of balanced binary search tree with pretty print.
Downloads
145
Maintainers
Readme
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()