LeetCode Search Insert Position

Search Insert Position

Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.

You may assume no duplicates in the array.

Here are few examples.
[1,3,5,6], 5 → 2
[1,3,5,6], 2 → 1
[1,3,5,6], 7 → 4
[1,3,5,6], 0 → 0

标准的二分搜索算法,在结束的时候,如果没有找到target:那么left指向小于target的最大的数,right指向大于target的最小的数。
class Solution {
public:
    int searchInsert(int A[], int n, int target) {
        if(NULL == A || 0 == n)
    		return 0;
		int left = 0, right = n-1, mid = 0;
		while(left <= right)
		{
			mid = left + (right-left)/2;
			if(target == A[mid])
				return mid;
			else if(target < A[mid])
				right = mid - 1;
			else
				left = mid + 1;
		}	
		return left;
    }
};

你可能感兴趣的:(算法,null,search,Class,insert,Duplicates)