x 的平方根

Posted newmoonn

tags:

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

 1 class Solution {
 2 public:
 3     int mySqrt(int x) {
 4         long res = x;
 5         while (res * res > x) {
 6             res = (res + x / res) / 2;
 7         }
 8         return res;
 9     }
10 };

 

以上是关于x 的平方根的主要内容,如果未能解决你的问题,请参考以下文章

golang代码片段(摘抄)

java刷题--69x的平方根

最强解析面试题:x 的平方根(Sqrt(x))

最强解析面试题:x 的平方根(Sqrt(x))

计蒜课_二分法求平方根

力扣 题目69- x 的平方根