Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
How to validate a Binary Search Tree | Importance and algorithm | Leetcode
Jan 25, 2025
67 views
Why Do we Care about Binary Search Tree?
It's a fundamental building block for databases and data structures used in Big Tech, Common interview question at tech companies, especially when discussing optimisation.
BST validation is crucial because BSTs are used for efficient searching/sorting (O(log n) operations). Invalid BSTs break these performance guarantees.
If we use Binary search Tree(BST) frequently then there should at least be validation put to check if a binary search tree is valid as it claims to be.
An example of BST is Youtube organising it's content hierarchically for recommendation and search indexing
leftSubtree of 2 is smaller than 2 and rightSubTree of 2 is greater than 2
left subtree of every node contains only nodes with keys less than the node's key
Valid Binary Search Tree
Given the root of a binary tree, return true if it is a valid binary search tree, otherwise return false.
A valid binary search tree satisfies the following constraints:
Example 1:
Example 2:
Explanation: The root node's value is 1 but its left child's value is 2 which is greater than 1.
Constraints:
Let's see how we'd validate a binary search tree manually, let's observe a pattern there.
it is greater than a random number, cause we don't care
On Traversing Left
On Traversing Right
we see a pattern this
but what should it be smaller than?
that we don't care,
here we see a pattern, that anytime we go right, we update our left boundary and anytime we go left, we update our right boundary
#binarySearchTree #dataStructure #leetcode