Concept Flow - Binary Search Iterative Approach
Start with sorted array and target
Set low = 0, high = len-1
While low <= high
Calculate mid = (low + high) / 2
Compare array[mid
high=mid-1
Repeat loop
If not found, return -1
This flow shows how binary search narrows down the search range by adjusting low and high pointers until the target is found or the range is empty.