#binary-search
Read more stories on Hashnode
Articles with this tag
A binary search tree (BST) is a data structure that is commonly used in computer science to store and retrieve data efficiently. It is called a...
Definition Binary Search is a searching algorithm which can be used on the sorted array to reduce the time complexity from O(n) to O(log n) where n...