Sqrt(x)

/*用牛顿迭代法求x的平方根*/
class Solution {
public:
    int mySqrt(int x) {
        double res = 1.0;
        while(fabs(res*res-x)>1e-6){
            res = (res+x/res)/2;
        }
        return res;
    }
};

 

posted @ 2015-04-26 19:34  SprayT  阅读(91)  评论(0编辑  收藏  举报