1.题目描述
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]
.
给定一个按照升序排列的整数数组 nums,和一个目标值 target。找出给定目标值在数组中的开始位置和结束位置。
你的算法时间复杂度必须是 O(log n) 级别。
如果数组中不存在目标值,返回 [-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]
2.Solutions
1 | public static int[] searchRange(int[] nums, int target) { |
target + 1可能造成内存溢出。
测试用例:nums = [1,1,2,2,5,2147483647],target=2147483647
输出:[5,-1]
因为target+1之后变成了-2147483648,然后第二次调用firstGreaterOrEqual方法返回0,所以end=-1。
附:二分查找
循环版本:
1 | public static int binarySearch(int[] arr, int target){ |
递归版本:
1 | public static int binarySearch(int[] arr, int start, int end, int target){ |