Leetcode#35. Search Insert Position
Problem
Given a sorted array of distinct integers and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.
You must write an algorithm with O(log n)
runtime complexity.
Example 1:
1 | Input: nums = [1,3,5,6], target = 5 |
Example 2:
1 | Input: nums = [1,3,5,6], target = 2 |
Example 3:
1 | Input: nums = [1,3,5,6], target = 7 |
Constraints:
1 <= nums.length <= 10^4
10^4 <= nums[i] <= 10^4
nums
contains distinct values sorted in ascending order.10^4 <= target <= 10^4
Solve
就使用 二分搜尋演算
1 | class Solution: |
最後return left為 target 不在nums 裡
所以應該插在 left 這位置
如果要確切找到,就 return false,代表沒有在裏頭
1 | nums = [2 , 4] |
本部落格所有文章除特別聲明外,均採用 CC BY-NC-SA 4.0 許可協議。轉載請註明來自 Imisky!
評論