lintcode-BinarySearch-14

给定一个排序的整数数组(升序)和一个要查找的整数target,用O(logn)的时间查找到target第一次出现的下标(从0开始),如果target不存在于数组中,返回-1

您在真实的面试中是否遇到过这个题?  
Yes
样例

在数组 [1, 2, 3, 3, 4, 5, 10] 中二分查找3,返回2

挑战

如果数组中的整数个数超过了2^32,你的算法是否会出错?

class Solution {
public:
    /**
     * @param nums: The integer array.
     * @param target: Target number to find.
     * @return: The first position of target. Position starts from 0. 
     */
    int binarySearch(vector<int> &array, int target) {
        int y=array.size();
        int x=0;
        
        while(x<y){
            int mid=x+(y-x)/2;
            if(array[mid]>=target)
                y=mid;
            else
                x=mid+1;
        }
        return array[x]==target?x:-1;
    }
};


你可能感兴趣的:(lintcode-BinarySearch-14)