SAG4X / DSA

Data Structures and Algorithms in Day Today Life
6 stars 25 forks source link

Binary Search In JavaScript #59

Closed harry6003 closed 3 years ago

harry6003 commented 3 years ago

Binary Search is searching technique which works on Divide and Conquer approach. It used to search any element in a sorted array. As compared to linear, binary search is much faster with Time Complexity of O(logN) whereas linear search algorithm works in O(N) time complexity.

harry6003 commented 3 years ago

Resolved in #60