這題用的技巧是二分搜尋法,原理是每次循環都會將搜索範圍縮小一半。演算法通常需要使用二分思想,即每次能夠排除一半的範圍,快速的找出陣列中所要求的元素位置,這樣時間複雜度可達 O(log n)
,這裡有 JAVA 和 Python 的寫法。
Given an array of integers
nums
which is sorted in ascending order, and an integertarget
, write a function to searchtarget
innums
. Iftarget
exists, then return its index. Otherwise, return-1
.
You must write an algorithm withO(log n)
runtime complexity.
給定一個整數陣列
nums
,這是個上升排序陣列,和一個目標整數target
,寫一個方法去搜尋在nums
陣列裡的目標整數target
。如果目標整數target
存在就回傳這個索引。否則回傳-1
。
你必須寫一個時間複雜度是O(log n)
的演算法。
題目連結:https://leetcode.com/problems/binary-search/
1 <= numRows <= 30
1 <= nums.length <= 104
104 < nums[i], target < 104
All the integers in nums
are unique.nums
is sorted in ascending order.
Input: nums = [-1,0,3,5,9,12], target = 9
Output: 4
Explanation: 9 exists in nums and its index is 4
Input: nums = [-1,0,3,5,9,12], target = 2
Output: -1
Explanation: 2 does not exist in nums so return -1
這題用的技巧是二分搜尋法,原理是每次循環都會將搜索範圍縮小一半。
- middle = start + ( end - start ) / 2 可取得中間值
- 找出目標值在中間值的左側還是右側
- 搜索範圍越來越小,直到最後回傳中間值就是答案
[注意點] 之所以要用上述中間值的寫法會比較安全,因如果 start 和 end 趨近於最大數時,兩者相加起來的合可能會造成整數溢位
class Solution {
public int search(int[] nums, int target) {
int start = 0; // 起點位置
int end = nums.length-1; // 終點位置
while (start <= end ){
int middle = start + (end-start)/2; // 中間值
if (target > nums[middle]){ // 目標值 > 陣列中間值
start = middle + 1; // 重新定義起點,下次回圈從新的起點開始就好 (因為目標值一定比自己大,要不包含 middle 自己)
}else if (target < nums[middle]){ // 目標值 < 陣列中間值
end = middle - 1; // 重新定義終點,下次回圈找到新的終點就好 (因為目標值一定比自己小,要不包含 middle 自己)
}else { // 目標值 = 陣列中間值
return middle; // 找到答案,回傳中間值索引
}
}
return -1; // 沒有這個數回傳 -1
}
}
使用了和 Java 一樣的邏輯執行,換成 Python 的寫法。
class Solution:
def search(self, nums: List[int], target: int) -> int:
start = 0 # 起點
end = len(nums)-1 # 終點
while start <= end:
# 設定中間值
middle = start + (end-start)//2
# 判斷 target 是否大於
if target > nums[middle]:
start = middle+1
# 判斷 target 是否小於
elif target < nums[middle]:
end = middle-1
# 判斷 target 是否等於 middle
else :
return middle
# 都沒有
return -1
Language | Runtime | Memory |
---|---|---|
Java | 0ms | 45.1MB |
Python | 251ms | 17.9MB |
(新手上路,如有錯誤請友善告知,感謝)
Blog
https://chris81051.github.io/2023/05/29/LeetCode-704-Binary-Search-Java-Python/
有分享技術文章、科技新聞、日常生活,歡迎一起討論