34. Find First and Last Position of Element in Sorted Array

题目链接
tag:

  • Medium;
  • Binary Search;

question
  Given an array of integers nums sorted in ascending order, 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].

Example 1:

Input: nums = [5,7,7,8,8,10], target = 8
Output: [3,4]

Example 2:

Input: nums = [5,7,7,8,8,10], target = 6
Output: [-1,-1]

思路:
  这道题让我们在一个有序整数数组中寻找相同目标值的起始和结束位置,而且限定了时间复杂度为O(logn),这是典型的二分查找法的时间复杂度,所以这道题我们也需要用此方法,我们的思路是首先对原数组使用二分查找法,找出其中一个目标值的位置,然后向两边搜索找出起始和结束的位置,代码如下:

class Solution {
public:
    vector<int> searchRange(vector<int>& nums, int target) {
        int index = search(nums, 0, nums.size()-1, target);
        if (index == -1) return {-1, -1};
        int left = index, right = index;
        while (left > 0 && nums[left-1] == nums[index]) --left;
        while (right < nums.size()-1  && nums[right+1] == nums[index]) ++right;
        return {left, right};
    }
    
    int search (vector<int>& nums, int left, int right, int target) {
        if (left > right) return -1;
        int mid = left + (right - left) / 2;
        if (nums[mid] == target) return mid;
        else if (nums[mid] < target) return search(nums, mid+1, right, target);
        else return search(nums, left, mid-1, target);
    }
};
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容