<div class="image-package"><img src="https://img.haomeiwen.com/i1648392/827204c2588e091f.jpg" img-data="{"format":"jpeg","size":102843,"height":900,"width":1600}" class="uploaded-img" style="min-height:200px;min-width:200px;" width="auto" height="auto"/>
</div><blockquote><p>给定一个 n 个元素有序的(升序)整型数组 nums 和一个目标值 target ,写一个函数搜索 nums 中的 target,如果目标值存在返回下标,否则返回 -1。
示例 1:
输入: nums = [-1,0,3,5,9,12], target = 9
输出: 4
解释: 9 出现在 nums 中并且下标为 4
示例 2:
输入: nums = [-1,0,3,5,9,12], target = 2
输出: -1
解释: 2 不存在 nums 中因此返回 -1
提示:
你可以假设 nums 中的所有元素是不重复的。
n 将在 [1, 10000]之间。
nums 的每个元素都将在 [-9999, 9999]之间。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/binary-search
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。</p><p>
</p></blockquote><p>
</p><h1 id="7j7i6">题解</h1><div class="image-package"><img src="https://img.haomeiwen.com/i1648392/b51c3f4fb5783b92.jpg" img-data="{"format":"jpeg","size":26629,"height":276,"width":902}" class="uploaded-img" style="min-height:200px;min-width:200px;" width="auto" height="auto"/>
</div><h2 id="gsrj5">Swift</h2><blockquote><p>class Solution {
func search(_ nums: [Int], _ target: Int) -> Int {
var left = 0
var right = nums.count
while left < right {
let mid = (left + right) / 2
if target > nums[mid] {
left = mid + 1
} else if target < nums[mid] {
right = mid
} else {
return mid
}
}
return -1
}
}
print(Solution().search([-1, 0, 3, 5, 9, 12], 9))
print(Solution().search([-1, 0, 3, 5, 9, 12], 2))
</p><p>
</p></blockquote><p>
</p><p>
</p>
网友评论