Skip to content

Binary Search and Edge Case

Quote

Easy algorithms are hard to write correctly

int binarySearch(int[] nums, int target) {
    int left = 0; 
    int right = nums.length - 1; 

    while(left <= right) {
        int mid = left + (right - left) / 2;
        if(nums[mid] == target)
            return mid; 
        else if (nums[mid] < target)
            left = mid + 1; 
        else if (nums[mid] > target)
            right = mid - 1;
    }
    return -1;
}

Analysis

Loop Invariant

Note that loop invariant is left <= right, it means when loop terminate

  • We find the target number
  • left > right: this happens when left = mid = right and nums[mid] != target, thus the loop ends.

Question

Why we use <= instead of < in our loop invarinat

Search for Left boundary

Given an array of sorted numbers. Note that numbers could be duplicate, find the left most target.

public static int binaryLeftSearch(int[] nums, int target) {        
    int low = 0
    int high = nums.length - 1;
    while (low <= high) {
        int mid = low + ((high - low) >> 1);
        if (target <= nums[mid]) {
            index = mid;
            high = mid - 1;
        } else {
            low = mid - 1;
        }
    }

    if (index == -1) {
        return -1;
    }
    return arr[index] == target ? index : -1;
}