LeetCode 34 :Find First and Last Position of Element in Sorted Array

Find First and Last Position of Element in Sorted Array

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].

译:给定按升序排序的整数数组,找到给定目标值的起始位置和结束位置。 算法的运行时复杂度必须为O(log n)。 如果在数组中找不到目标,则返回[-1,-1]。

梳理下解决方法

  • 直接遍历,用两个变量记录起始和结束为止,算法复杂度为0(n)。
  • 采用二分查找法找到其中一个等于目标值的数据,然后再左右扩展,复杂度为O(log n)。在最坏情况下(如:数组的值全为目标值),算法复杂度为O(n)。
  • 以上两种方式都不行,因为时间复杂度不满足,那么我们考虑是否有一种方式,直接能查找到最左边的等于目标函数的值,再次二分查找最右边的值,这样复杂度恰好为O(log n)。

代码如下:

class Solution {
    public int[] searchRange(int[] nums, int target) {
        if (nums == null || nums.length == 0){
            return new int[]{-1, -1};
        }

        int left = 0, right = nums.length - 1;
        int[] res = new int[2];
        //找左边
        res[0] = binarySearchLowerBound(nums,target,left,right);

        //找右边
        res[1] = binarySearchUpperBound(nums, target, left, right);

        return res;
    }

    public int binarySearchLowerBound(int[] ints, int target,int low, int high){
        while(low <= high){
            int mid = low + (high - low) / 2;
            if(target <= ints[mid]){
                high = mid - 1;
            }else{
                low = mid + 1;
            }
        }
        if(low < ints.length && ints[low] == target)
            return low;
        else
            return -1;
    }

    public int binarySearchUpperBound(int[] ints, int target,int low, int high){
        while(low <= high){
            int mid = low + (high - low) / 2;
            if(target >= ints[mid]){
                low = mid + 1;
            }else{
                high = mid - 1;
            }
        }
        if(high >= 0 && ints[high] == target)
            return high;
        else
            return -1;
    }
}

转载于:https://www.cnblogs.com/hirampeng/p/10891482.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值