..
2025-03-26 01:29:03 +00:00
2025-03-26 01:27:35 +00:00

Binary Search

Repeatedly split the array checking if value is greater or less than the mid point. Stop when the exact value is found.

It takes log N steps to reduce an array of size N to an array of size 1. Time complexity for this algorithm is O(log N).