[Leetcode] Sqrt(x)

Implement int sqrt(int x).

Compute and return the square root of x.

牛顿迭代法, 碉堡了。

class Solution {
public:
    int sqrt(int x) {
        double ans = x;
        while (abs(ans * ans - x) > 0.0001) {
            ans = (ans + x / ans) / 2;
        }
        return (int)ans;
    }
};

 

posted @ 2014-04-10 16:50  Eason Liu  阅读(143)  评论(0编辑  收藏  举报