Search for a Range

水題一道:
Given a sorted array of integers, find the starting and ending position of a given target value.

Your algorithm’s runtime complexity must be in the order of O(log n).

If the target is not found in the array, return [-1, -1].

For example,
Given [5, 7, 7, 8, 8, 10] and target value 8,
return [3, 4].

AC的C++代碼如下:

    vector<int> searchRange(vector<int>& nums, int target) {
        vector<int> ret;

        int left = -1, right = -1;
        for(int i=0; i<nums.size(); i++){
            if(nums[i] == target && left < 0){
                left = i;
                right = left;
            }else if(nums[i] == target){
                right = i;
            }
        }
        ret.push_back(left);
        ret.push_back(right);

        return ret;
    }
發佈了115 篇原創文章 · 獲贊 29 · 訪問量 48萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章