元素最左出现位置

对于一个有序数组arr,再给定一个整数num,请在arr中找到num这个数出现的最左边的位置。

给定一个数组arr及它的大小n,同时给定num。请返回所求位置。若该元素在数组中未出现,请返回-1。

测试样例:
[1,2,3,3,4],5,3

返回:2

class LeftMostAppearance {
public:
    int findPos(vector<int> arr, int n, int num) {
        // write code here
        int res = -1;
        int L = 0;
        int R = n-1;
        while(L <= R){
            int mid = L + (R-L)/2;
            if (arr[mid]== num){
                R = mid-1;
                res = mid;
            }
            else if (arr[mid]>num){
                R = mid -1;
            }
            else{
                L = mid +1;
            }
        }
        return res;
    }
};

猜你喜欢

转载自blog.csdn.net/zrh_CSDN/article/details/80601700