美文网首页leetcode题解
【Leetcode】704—Binary Search

【Leetcode】704—Binary Search

作者: Gaoyt__ | 来源:发表于2019-07-21 15:08 被阅读0次
一、题目描述

给定一个 n 个元素有序的(升序)整型数组 nums 和一个目标值 target ,写一个函数搜索 nums 中的 target,如果目标值存在返回下标,否则返回 -1。
示例:

输入: nums = [-1,0,3,5,9,12], target = 9
输出: 4
解释: 9 出现在 nums 中并且下标为 4

输入: nums = [-1,0,3,5,9,12], target = 2
输出: -1
解释: 2 不存在 nums 中因此返回 -1
二、代码实现

简单的二分查找

class Solution(object):
    def search(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: int
        """
        low = 0
        high = len(nums) - 1
        while low <= high:
            mid = (low + high)/2
            if nums[mid] == target: return mid
            elif nums[mid] < target: low = mid + 1
            else: high = mid -1
        return -1

相关文章

网友评论

    本文标题:【Leetcode】704—Binary Search

    本文链接:https://www.haomeiwen.com/subject/rwomlctx.html