首页 > 其他 > 详细

LeetCode "Sqrt(x)"

时间:2014-07-23 12:02:06      阅读:338      评论:0      收藏:0      [点我收藏+]

2 solutions: bin-search and Newton iteration.

class Solution {
public:
    int _sqrt(long long tgt, long long i0, long long i1)
    {
        long long cand = (i0 + i1) / 2;
        if (cand * cand == tgt) return cand;
        if (cand * cand > tgt)     return _sqrt(tgt, i0, cand);
        else if(cand * cand < tgt)
        {
            if((cand + 1)*(cand + 1) > tgt) return cand;
            if((cand + 1)*(cand + 1) == tgt) return cand + 1;
            return _sqrt(tgt, cand + 1, i1);
        }
    }
    int sqrt(int x) {
        if (x == 1) return 1;
        return _sqrt(x, 1, x/2);
    }
};

LeetCode "Sqrt(x)",布布扣,bubuko.com

LeetCode "Sqrt(x)"

原文:http://www.cnblogs.com/tonix/p/3862126.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!