码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode "Sqrt(x)"

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

标签:style   blog   color   io   re   c   

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)"

标签:style   blog   color   io   re   c   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!