码迷,mamicode.com
首页 > 编程语言 > 详细

算法复习:二分查找

时间:2020-02-08 12:03:05      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:span   https   ref   eve   none   alt   title   ret   tps   

leedcode 69. x 的平方根

注意边界条件和判断条件

mid int存不下要用long long

long long mid=lower+(upper-lower)/2     取上界
long long mid=lower+(upper-lower+1)/2 取下界
技术图片
class Solution {
public:

    int mySqrt(int x)
    {
        int lower=1,upper=x;
        long long mid=lower+(upper-lower)/2;
        if(x==0)
            return 0;
        while(lower<mid)
        {
            if(mid*mid==x)
                return mid;
            if(mid*mid>x)
            {
                upper=mid;
                mid=lower+(upper-lower)/2;
                continue;
            }
            if(mid*mid<x)
            {
                lower=mid;
                mid=lower+(upper-lower)/2;
                continue;
            }
        }
        return mid;
    }
};
leedcode 69

 

算法复习:二分查找

标签:span   https   ref   eve   none   alt   title   ret   tps   

原文地址:https://www.cnblogs.com/dzzy/p/12275653.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!