首页 > 其他 > 详细

[LeetCode]69 Sqrt(x)

时间:2015-01-04 19:44:03      阅读:266      评论:0      收藏:0      [点我收藏+]

https://oj.leetcode.com/problems/sqrtx/

http://blog.csdn.net/linhuanmars/article/details/20089131

public class Solution {
    public int sqrt(int x) {
        
        // Assume x >= 0
        if (x == 0)
            return 0;
        
        return s(x, 0L, (long)x);
    }
    
    private int calc(int x, long low, long high)
    {
        // Why using long.
        // is because we might calculate  (MAX_VALUE / 2 + somenumber) ^ 2
        
        if (low > high)
        {
            // This is the stop point.
            return (int)high;
        }
        
        long mid = (low + high) / 2;
        long y = mid * mid;
        if (x == y)
        {
            return (int)mid;
        }
        else if (x > y)
        {
            return calc(x, mid + 1, high);
        }
        else
        {
            return calc(x, low, mid - 1);
        }
    }
}


[LeetCode]69 Sqrt(x)

原文:http://7371901.blog.51cto.com/7361901/1598893

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