class Solution(object):
def searchInsert(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: int
"""
left=0
right=len(nums)
while left<right:#二分法查找
middle=left+(right-left)/2
if nums[middle]>target:
right=middle
elif nums[middle]<target:
left=middle+1
else:
return middle
return right
相关文章
- 12-09力扣:搜索插入位置
- 12-09每日力扣008——搜索插入位置
- 12-09力扣35. 搜索插入位置
- 12-09python 力扣35数组搜索插入位置
- 12-09力扣 35.搜索插入位置
- 12-09力扣简35 搜索插入位置
- 12-09力扣 35. 搜索插入位置