1.0.1 • Published 10 months ago

@terika/balanced-bst v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
10 months ago

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()