程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> LeetCode題解:Search for a Range

LeetCode題解:Search for a Range

編輯:C++入門知識

LeetCode題解: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].

題意:給定有序數組,找到目標元素出現的起始位置和終止位置,若沒有出現則返回-1,-1

解決思路:二分查找找到目標元素出現位置,然後找目標元素+1的數出現的元素的位置,減去1就是最後的結果了

代碼:

public class Solution {
    public int[] searchRange(int[] nums, int target) {
        int left = binarySearch(nums, target);

        if(left == nums.length || nums[left] != target){
            return new int[]{-1, -1};
        }

        return new int[]{left, binarySearch(nums, target + 1) - 1};
    }

    private int binarySearch(int[] nums, int target){
        int count = nums.length;
        int step = 0;
        int left = 0;
        int mid = 0;

        while(count > 0){
            step = count >> 1;
            mid = left + step;

            if(nums[mid] < target){
                left = mid + 1;
                count -= (step + 1);
            }else{
                count = step;
            }
        }

        return left;
    }
}

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved