[leetcode] 69. Sqrt(x) 解题报告

Posted

tags:

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

Implement int sqrt(int x).

Compute and return the square root of x.

 using only integer division for the Newton method works

public int mySqrt(int x) {
        long r=x;
        while (r*r>x){
            r=(r+x/r)/2;
        }
        return (int) r;
    }

 

以上是关于[leetcode] 69. Sqrt(x) 解题报告的主要内容,如果未能解决你的问题,请参考以下文章

一天一道LeetCode#69. Sqrt(x)

LeetCode 69. Sqrt(x)

LeetCode(69):Sqrt(x)

Leetcode 69. Sqrt(x)

LeetCode 69. Sqrt(x)

#Leetcode# 69. Sqrt(x)