-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0035.py
59 lines (53 loc) · 1.59 KB
/
0035.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# 给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。
# 你可以假设数组中无重复元素。
from typing import List
class Solution:
#2021/06/16
def searchInsert(self, nums: List[int], target: int) -> int:
left = 0
right = len(nums)
while left < right:
center = (left+right)>>1
if nums[center] == target:
return center
else:
if nums[center] > target:
right = center
else:
left = center+1
continue
return right
#old
def searchInsert1(self, nums: List[int], target: int) -> int:
length = len(nums)
# 二分查找
left = 0
right = length-1
idx = None
while left < right:
idx = int((left + right) / 2)
cntValue = nums[idx]
if target > cntValue:
left = idx+1
elif target < cntValue:
right = idx-1
else:
return idx
if target > nums[left]:
return left+1
else:
return left
solu = Solution()
nums = [1,3,5,6]
target = 5
print(solu.searchInsert(nums, target))
nums = [1,3,5,6]
target = 2
print(solu.searchInsert(nums, target))
target = 7
print(solu.searchInsert(nums, target))
target = 0
print(solu.searchInsert(nums, target))
nums = [1,3]
target = 2
print(solu.searchInsert(nums, target))