Binary Search Tree
The theory of BST
What is BST?
- Binary Search Tree(BST) is a Binary Tree which all the nodes follows the below mentioned properties
- The left sub-tree of a node has a key less than or equal to its parent node’s key.
- The right sub tree of a node has a key greater than to its parent node’s key.
Why should we learn BST?
- Binary tree implemented by linked list has good space efficient compared to the BT implemented by Array. However, it is not good on Insertion, deletion, searching, traversing which has time complexity of O(n). BST will improve the time complexity of binary tree by O(log n).
Algorithm - Creation of blank BST
1 | createBST() |
- Time Complexity - O(1)
- Space Complexity - O(1)
Algorithm - Searching a node in BST
1 | BST_Search(root, value) ------------T(n) |
- Time Complexity - O(log n)
- Space Complexity - O(log n) —-beacuse of recursive call
Algorithm - Traverse in BST
- Totally same as traversing Binary Tree
Algorithm - Inserting a node in BST
- Cases
- BST is blank
- BST is non-blank
Using Stack on the behind of the scene.
1 | BST_Insert(currentNode, valueToInsert) |
- Time Complexity - O(log n)
- Space Complexity - O(log n)
Algorithm - Deleting a node in BST
- Cases
- Node to be deleted is leaf node
- Node to be deleted is having 1 child
- Node to be deleted has 2 child
Using Stack on the behind of the scene.
1 | deleteNodeOfBST(root, valueToBeDeleted) --------------------------------------T(n) |
- Time Complexity - O(log n)
- Space Complexity - O(log n)
Algorithm - Deleting entire tree in BST
1 | DeleteBST() |
- Time Complexity - O(1)
- Space Complexity - O(1)