lintcode-easy-Sqrt(x)

Posted 哥布林工程师

tags:

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

Implement int sqrt(int x).

Compute and return the square root of x.

sqrt(3) = 1

sqrt(4) = 2

sqrt(5) = 2

sqrt(10) = 3

mid*mid 以及 (mid + 1) * (mid + 1)都有可能溢出,所以要使用long类型。

class Solution {
    /**
     * @param x: An integer
     * @return: The sqrt of x
     */
    public int sqrt(int x) {
        // write your code here
        
        if(x <= 1)
            return x;
        
        long left = 1;
        long right = x / 2;
        
        while(left < right){
            long mid = left + (right - left) / 2;
            
            if((mid * mid) <= x && ((mid + 1) * (mid + 1)) > x)
                return (int)mid;
            else if(((mid + 1) * (mid + 1)) <= x)
                left = mid + 1;
            else 
                right = mid - 1;
        }
        
        return (int)left;
    }
}

 

以上是关于lintcode-easy-Sqrt(x)的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript 有用的代码片段和 trick

对这个带有 & 不带 = 的代码片段返回类型感到非常困惑

哈斯克尔。我很困惑这个代码片段是如何工作的

替换从 VAST 代码返回的多个 HLS VOD 片段

SpringBoot中表单提交报错“Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported“(代码片段

JS常用代码片段-127个常用罗列-值得收藏