Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 986 Bytes

File metadata and controls

38 lines (33 loc) · 986 Bytes

--easy 给定一个 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

来源:力扣(LeetCode) 链接:https://leetcode.cn/problems/binary-search

//  二分搜索经典题目
var search = function (nums, target) {
    let left = 0
    let right = nums.length - 1
    let mid = Math.floor(right / 2)
    while (left <= right) {
        let n = nums[mid]
        if (target === n) {
            return mid
        }
        if (target > n) {
            left = mid + 1
        } else if (target < n) {
            right = mid - 1
        }
        mid = Math.floor(left + (right - left) / 2)
    }
    return -1
};