在排序数组中查找元素的第一个和最后一个位置

给定一个按照升序排列的整数数组 nums,和一个目标值 target。找出给定目标值在数组中的开始位置和结束位置。

你的算法时间复杂度必须是 O(log n) 级别。

如果数组中不存在目标值,返回 [-1, -1]。

示例 1:

输入: nums = [5,7,7,8,8,10], target = 8
输出: [3,4]
示例 2:

输入: nums = [5,7,7,8,8,10], target = 6
输出: [-1,-1]

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。代码:


class Solution {
public:
    vector searchRange(vector& nums, int target) 
    {
        vector ret;
        int count = 0;
        int head = -1;
        int tail = -1;
        int first_flag = 0;
        int  size = nums.size();
        if(size == 0)
        {
            ret.push_back(head);
            ret.push_back(tail);
            return ret;
        }
        while(count != size)
        {
            if(nums[count] == target && first_flag == 0)
            {
                head = count;
                tail = count;
                first_flag = 1;
            }
            else if(nums[count] == target && first_flag != 0)
            {
                tail = count;
            }
            count++;
        }
        ret.push_back(head);
        ret.push_back(tail);
        return ret;
    }
};

 

你可能感兴趣的:(leetcode)