leetcode 704. 二分查找

Posted 嗯我想想

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 704. 二分查找相关的知识,希望对你有一定的参考价值。

704. 二分查找

思路分析:
板子题。背下来。理解。

AC代码:

class Solution 
public:
    int search(vector<int>& nums, int target) 
        int l = 0, r = nums.size() - 1;
        while(l < r) 
            int mid = (l + r) >> 1;
            if(nums[mid] >= target) r = mid;
            else l = mid + 1; 
        
        if(nums[r] == target)
            return r;
        else
            return -1;
    
;

以上是关于leetcode 704. 二分查找的主要内容,如果未能解决你的问题,请参考以下文章

leetcode 704. 二分查找

LeetCode Algorithm 704. 二分查找

[leetcode]704.二分查找

LeetCode第3天 - 704. 二分查找 | 35. 搜索插入位置

LeetCode 704 二分查找[二分] HERODING的LeetCode之路

LeetCode704 二分查找