分类:array
难度:medium
- 在排序数组中查找元素的第一个和最后一个位置
给定一个按照升序排列的整数数组 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]
题解
看到O(log n) ,就知道,用二分法做,这个其实是两个二分法,第一个判断左边界,第二个判断右边界
要注意的是边界问题(哭泣)
代码
class Solution(object):
def searchRange(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: List[int]
"""
def search_boundary(nums,target,find_left):
left,right = 0,len(nums)
while left<right:
mid = (right+left)//2
if nums[mid]<target:
left = mid+1
elif nums[mid]>target:
right = mid
else:
if find_left is True:
right = mid
else:
left=mid+1
return left
if not nums:
return [-1,-1]
left_index = search_boundary(nums,target,True)
if left_index>=len(nums) or nums[left_index]!=target:
return -1,-1
else:
return left_index,search_boundary(nums,target,False)-1