首页 > 其他 > 详细

LeetCode 69 Sqrt(x)(Math、Binary Search)(*)

时间:2016-03-05 23:50:19      阅读:488      评论:0      收藏:0      [点我收藏+]

翻译

实现int sqrt(int x)。

计算并返回x的平方根。

原文

Implement int sqrt(int x).

Compute and return the square root of x.

分析

首先给大家推荐维基百科:

zh.wikipedia.org/wiki/二元搜尋樹

en.wikipedia.org/wiki/Binary_search_tree

大家也可以看看类似的一道题:

LeetCode 50 Pow(x, n)(Math、Binary Search)(*)

然后我就直接贴代码了……

代码

class Solution {
public:
    int mySqrtHelper(int x, int left, int right) {
        if (x == 0) return 0;
        if (x == 1) return 1;
        int mid = left + (right - left) / 2;
        if (mid > x / mid) right = mid;
        if (mid <= x / mid)left = mid;
        if (right - left <= 1) return left;
        else mySqrtHelper(x, left, right);
    }

    int mySqrt(int x) {
        return mySqrtHelper(x, 0, x);
    }
};

LeetCode 69 Sqrt(x)(Math、Binary Search)(*)

原文:http://blog.csdn.net/nomasp/article/details/50811232

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