Search in a Binary Search Tree - LeetCode
Binary Search Tree (BST) is an excellent data structure for search operations and this question is an excellent one to practice its basics.
BST Properties
The left sub-tree will always have values less than the root.
The right sub-tree will always h...
blog.jayeshkarli.dev2 min read