Implementation of Binary Search Tree in Javascript
In this article, we would be implementing the Binary Search Tree data structure in Javascript. A tree is a a collection of node connected by some edges. A tree is a non linear data structure. A Binary Search tree is a binary tree in which nodes which have lesser value are stored on the left while the nodes with higher value are stored at the right.
Now lets see an example of of an Binary Search Tree node:
// Node class class Node { constructor(data) { this.data = data; this.left = null; this.right = null; } } |
As in the above code snippet we define a node class having three property data, left and right, Left and right are pointers to the left and right node in a Binary Search Tree. Data is initialized with data which is passed when object for this node is created and left and right is set to null.
Now lets see an example of an Binary Search Tree class.
// Binary Search tree class class BinarySearchTree { constructor() { // root of a binary seach tree this.root = null; } // function to be implemented // insert(data) // remove(data) // Helper function // findMinNode() // getRootNode() // inorder(node) // preorder(node) // postorder(node) // search(node, data) } |
The above example shows a framework of a Binary Search tree class, which contains a private variable root which holds the root of a tree, it is initialized to null.
Now lets implement each of this function:
- insert(data) – It inserts a new node in a tree with a value data
// helper method which creates a new node to// be inserted and calls insertNodeinsert(data){// Creating a node and initailising// with datavar newNode =newNode(data);// root is null then node will// be added to the tree and made root.if(this.root ===null)this.root = newNode;else// find the correct position in the// tree and add the nodethis.insertNode(this.root, newNode);}// Method to insert a node in a tree// it moves over the tree to find the location// to insert a node with a given datainsertNode(node, newNode){// if the data is less than the node// data move left of the treeif(newNode.data < node.data){// if left is null insert node hereif(node.left ===null)node.left = newNode;else// if left is not null recurr until// null is foundthis.insertNode(node.left, newNode);}// if the data is more than the node// data move right of the treeelse{// if right is null insert node hereif(node.right ===null)node.right = newNode;else// if right is not null recurr until// null is foundthis.insertNode(node.right,newNode);}}chevron_rightfilter_noneIn the above code we have two methods insert(data) and insertNode(node, newNode). Lets understand them one by one:-
- insert(data) – It creates a new node with a value data, if the tree is empty it add this node to tree and make it a root, otherwise it calls insert(node, data).
- insert(node, data) – It compares the given data with the data of current node and moves left or right accordingly and recur until it finds a correct node with a null value where new node can be added.
- remove(data) – This function removes a node with a given data.
// helper method that calls the// removeNode with a given dataremove(data){// root is re-initialized with// root of a modified tree.this.root =this.removeNode(this.root, data);}// Method to remove node with a// given data// it recurrs over the tree to find the// data and removes itremoveNode(node, key){// if the root is null then tree is// emptyif(node ===null)returnnull;// if data to be delete is less than// roots data then move to left subtreeelseif(key < node.data){node.left =this.removeNode(node.left, key);returnnode;}// if data to be delete is greater than// roots data then move to right subtreeelseif(key > node.data){node.right =this.removeNode(node.right, key);returnnode;}// if data is similar to the root's data// then delete this nodeelse{// deleting node with no childrenif(node.left ===null&& node.right ===null){node =null;returnnode;}// deleting node with one childrenif(node.left ===null){node = node.right;returnnode;}elseif(node.right ===null){node = node.left;returnnode;}// Deleting node with two children// minumum node of the rigt subtree// is stored in auxvar aux =this.findMinNode(node.right);node.data = aux.data;node.right =this.removeNode(node.right, aux.data);returnnode;}}chevron_rightfilter_noneIn the above code we have two method remove(data) and removeNode(node, data), let understand them one by one:
- remove(data) – It is helper methods which calls removeNode by passing root node and given data and updates the root of the tree with the value returned by the function
- removeNode(node, data) – It searches for a node with a given data and then perform certain steps to delete it.
While deleting a node from the tree their are three different scenarios as follows:-
- Deleting the leaf node – As leaf node do not have any children hence they can be easily removed and null is returned to the parent node
- Deleting a node with one child – If a node have a left child then we update the pointer of the parent node to the left child of the node to be deleted and similarly if a node have a right child then we update the pointer of the parent node to the right child of the node to be deleted
- Deleting a node with two children – In order to delete a node with two children we find the node with minimum value in its right subtree and replace this node with the minimum valued node and remove the minimum valued node from the tree
In the above code we have used findMinNode(node), it is defined in a helper method section.
Recommendation: Binary Search Tree | Set 2 (Delete) It contains a detail explaination and a video tutorial for deleting a node from binary search tree.
Now Lets understand different ways of traversing a Binary Search Tree.
- inorder(node) – It performs inorder traversal of a tree starting from a given node
Algorithm for inorder:- Traverse the left subtree i.e perform inorder on left subtree
- Visit the root
- Traverse the right subtree i.e perform inorder on right subtree
// Performs inorder traversal of a treeinorder(node){if(node !==null){this.inorder(node.left);console.log(node.data);this.inorder(node.right);}}chevron_rightfilter_none - preorder(node) – It performs preorder traversal of a tree starting from a given node.
Algorithm for preoder:- Visit the root
- Traverse the left subtree i.e perform inorder on left subtree
- Traverse the right subtree i.e perform inorder on right subtree
// Performs preorder traversal of a treepreorder(node){if(node !=null){console.log(node.data);this.preorder(node.left);this.preorder(node.right);}}chevron_rightfilter_none - postorder(node) – It performs postorder traversal of a tree starting from a given node.
Algorithm for postorder:- Traverse the left subtree i.e perform inorder on left subtree
- Traverse the right subtree i.e perform inorder on right subtree
- Visit the root
// Performs postorder traversal of a treepostorder(node){if(node !=null){this.postorder(node.left);this.postorder(node.right);console.log(node.data);}}chevron_rightfilter_none
Helper Methods
Lets declare some helper method which are useful while working with Binary Search Tree.
- findMinNode(node) – It searches for a node with a minimum value starting from node.
// finds the minimum node in tree// searching starts from given nodefindMinNode(node){// if left of a node is null// then it must be minimum nodeif(node.left ===null)returnnode;elsereturnthis.findMinNode(node.left);}chevron_rightfilter_noneAs seen in the above method we start from a node and keeping moving to the left subtree until we find a node whose left child is null, once we find such node we return it.
- getRootNode() – It returns the root node of a tree.
// returns root of the treegetRootNode(){returnthis.root;}chevron_rightfilter_none - search(data) – It searches the node with a value data in the entire tree.
// search for a node with given datasearch(node, data){// if trees is empty return nullif(node ===null)returnnull;// if data is less than node's data// move leftelseif(data < node.data)returnthis.search(node.left, data);// if data is less than node's data// move leftelseif(data > node.data)returnthis.search(node.right, data);// if data is equal to the node data// return nodeelsereturnnode;}chevron_rightfilter_none
Note : Different helper method can be declared in the BinarySearchTree class as per the requirement.
Implementation
Now lets use the BinarySearchTree class and its different methods described above.
// create an object for the BinarySearchTree var BST = new BinarySearchTree(); // Inserting nodes to the BinarySearchTree BST.insert(15); BST.insert(25); BST.insert(10); BST.insert(7); BST.insert(22); BST.insert(17); BST.insert(13); BST.insert(5); BST.insert(9); BST.insert(27); // 15 // / \ // 10 25 // / \ / \ // 7 13 22 27 // / \ / // 5 9 17 var root = BST.getRootNode(); // prints 5 7 9 10 13 15 17 22 25 27 BST.inorder(root); // Removing node with no children BST.remove(5); // 15 // / \ // 10 25 // / \ / \ // 7 13 22 27 // \ / // 9 17 var root = BST.getRootNode(); // prints 7 9 10 13 15 17 22 25 27 BST.inorder(root); // Removing node with one children BST.remove(7); // 15 // / \ // 10 25 // / \ / \ // 9 13 22 27 // / // 17 var root = BST.getRootNode(); // prints 9 10 13 15 17 22 25 27 BST.inorder(root); // Removing node with two children BST.remove(15); // 17 // / \ // 10 25 // / \ / \ // 9 13 22 27 var root = BST.getRootNode(); console.log("inorder traversal"); // prints 9 10 13 17 22 25 27 BST.inorder(root); console.log("postorder traversal"); BST.postorder(root); console.log("preorder traversal"); BST.preorder(root); |
For more on binary trees please refer to the following article: Binary tree Data Structure
This article is contributed by Sumit Ghosh. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Recommended Posts:
- Minimum swap required to convert binary tree to binary search tree
- Complexity of different operations in Binary tree, Binary Search Tree and AVL tree
- Binary Tree (Array implementation)
- Count the Number of Binary Search Trees present in a Binary Tree
- Binary Tree to Binary Search Tree Conversion using STL set
- Binary Tree to Binary Search Tree Conversion
- Difference between Binary Tree and Binary Search Tree
- Binary Search In JavaScript
- Search a node in Binary Tree
- Iterative Search for a key 'x' in Binary Tree
- Print Binary Search Tree in Min Max Fashion
- Print all even nodes of Binary Search Tree
- Construct a Binary Search Tree from given postorder
- Number of pairs with a given sum in a Binary Search Tree
- Find the closest element in Binary Search Tree


