当前位置:   article > 正文

leetcode x的平方根c++_c++用string类实现平方根计算函数,可参考如下方法: int mysqrt(int x) {

c++用string类实现平方根计算函数,可参考如下方法: int mysqrt(int x) { if (x ==

x的平方根

实现 int sqrt(int x) 函数。

计算并返回 x 的平方根,其中 x 是非负整数。

由于返回类型是整数,结果只保留整数的部分,小数部分将被舍去。

示例 1:

输入: 4
输出: 2
  • 1
  • 2

示例 2:

输入: 8
输出: 2
说明: 8 的平方根是 2.82842..., 
由于返回类型是整数,小数部分将被舍去。
  • 1
  • 2
  • 3
  • 4

解法1:使用内置函数

虽然本题的意思肯定不是要使用内置函数,但是我们要知道有这样的库函数

class Solution {
public:
    int mySqrt(int x) {
        return sqrt(x);
    }
};
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

解法2:二分搜索

class Solution {
public:
    int mySqrt(int x) {
        //注:在中间过程计算平方的时候可能出现溢出,所以用long long。
        long long i=0;
        long long j=x/2+1;//对于一个非负数n,它的平方根不会大于(n/2+1)
        while(i<=j)
        {
            long long mid=(i+j)/2;
            long long res=mid*mid;
            if(res==x) return mid;
            else if(res<x) i=mid+1;
            else j=mid-1;
        }
        return j;
    }
};
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

解法3:牛顿迭代法

class Solution {
public:
    int mySqrt(int x) {
        if (x == 0) return 0;
        double last=0;
        double res=1;
        while(res!=last)
        {
            last=res;
            res=(res+x/res)/2;
        }
        return int(res);
    }
};
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

本文参考:http://www.cnblogs.com/AnnieKim/archive/2013/04/18/3028607.html

觉得对你有帮助就点个赞噢谢谢

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/164802
推荐阅读
相关标签
  

闽ICP备14008679号