程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

python leetcode35:搜索插入位置

編輯:Python

題目:
"""
給定一個排序數組和一個目標值,在數組中找到目標值,並返回其索引。
如果目標值不存在於數組中,返回它將會被按順序插入的位置。
"""

法一:比較法

class Solution:
def searchInsert(self, nums: List[int], target: int) -> int:
for i in range(len(nums)):
if nums[i] == target: #相等
return i
elif i < len(nums)-1 and target > nums[i] and target < nums[i+1] : #target處於中間位置
return i+1
elif i == 0 and target < nums[i]: #開頭
return i
return len(nums) #不存在於數組

法二:二分查找

直接套用二分法即可,即不斷用二分法逼近查找第一個大於等於 \textit{target}target 的下標 。

class Solution:
def searchInsert(self, nums: List[int], target: int) -> int:
l,r = 0,len(nums)-1
while l <= r:
mid = (l+r)//2
if target == nums[mid]:
return mid
elif target < nums[mid]:
r = mid - 1
else:
l = mid +1
return l
nums = [1, 3, 5, 6]
target = 7
S = Solution()
result = S.searchInsert(nums,target)
print(result)


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