binary_search_tree_ds

1.0.2 • Public • Published

Binary Search Tree

JavaScript implementation of Binary Search Tree.

Installation & Usage :

 
npm install binary_search_tree_ds
 
const BinarySearchTree = require('binary_search_tree_ds');
 
let bst = new BinarySearchTree();
 
bst.insert(1); // Insert an element to bst tree
bst.find(1); // If node exits with the given value it returns that node otherwise undefined
bst.contains(1); // If node exits with the given value it returns true otherwise false
bst.bfs() // Returns array of values in breadth first search order
bst.dfs() // Returns array of values in depth first search order
bst.dfsPreOrder() // Returns array of values in pre depth first search order
bst.dfsPostOrder() // Returns array of values in post depth first search order
 

Package Sidebar

Install

npm i binary_search_tree_ds

Weekly Downloads

2

Version

1.0.2

License

MIT

Unpacked Size

12.8 kB

Total Files

5

Last publish

Collaborators

  • kumar_gaurav_mishra