点击上方“专知”,关注获取专业AI知识”
Implement int sqrt(int x).
Compute and return the square root of x.
x is guaranteed to be a non-negative integer.
Example 1:
Input: 4 Output: 2 Example 2:
Input: 8 Output: 2 Explanation: The square root of 8 is 2.82842..., and since we want to return an integer, the decimal part will be truncated.
题目让我们求x的平方根,如果有小数部分,只取整数部分。
方法1:二分查找求平方根,题目设置long的目的是为了防止越界。
class Solution {
public:
int mySqrt(int x) {
long l=1, r=x, mid;
while(l<=r)
{
mid=(l+r)/2;
if(mid*mid>x)
r=mid-1;
else if(mid*mid<x)
l=mid+1;
else
return mid;
}
return r;
}
};
师父不让用long来做这个题目。然后又仔细想了一下:
方法2:先想到如果存在溢出,肯定是右边界过大,所以先求了一下(int)sqrt(INT_MAX)=46340, 设置右边界的初始值为46340。
class Solution {
public:
int mySqrt(int x) {
int l=1, r=46340, mid;
while(l<=r)
{
mid=(l+r)/2;
if(mid*mid>x)
r=mid-1;
else if(mid*mid<x)
l=mid+1;
else
return mid;
}
return r;
}
};
方法3:不过我们一般不采用方法2来做,一般用下面的方法来做,巧妙地避免了每个可能溢出的点。
class Solution {
public:
int mySqrt(int x) {
int l=1, r=x, mid;
while(l<=r)
{
mid=l+(r-l)/2;
if(x/mid<mid)
r=mid-1;
else if(x/mid>mid)
l=mid+1;
else
return mid;
}
return r;
}
};
以上就是关关关于这道题的总结经验,希望大家能够理解,有什么问题可以在我们的专知公众号平台上交流或者加我们的QQ专知-人工智能交流群 426491390,也可以加入专知——Leetcode刷题交流群(请先加微信小助手weixinhao: Rancho_Fang)。
专知网站查看Leetcode刷题日记:
请登录www.zhuanzhi.ai或者点击阅读原文,顶端搜索“Leetcode” 主题,取查看获得专知Leetcode所有资源!如下图所示~
请感兴趣的同学,扫一扫下面群二维码,加入到专知-LeetCode学习交流群!(注明 Leetcode 刷题)
欢迎转发到你的微信群和朋友圈,分享专业AI知识!
获取更多关于机器学习以及人工智能知识资料,请访问www.zhuanzhi.ai, 或者点击阅读原文,即可得到!
-END-
欢迎使用专知
专知,一个新的认知方式!专注在人工智能领域为AI从业者提供专业可信的知识分发服务, 包括主题定制、主题链路、搜索发现等服务,帮你又好又快找到所需知识。
使用方法>>访问www.zhuanzhi.ai, 或点击文章下方“阅读原文”即可访问专知
中国科学院自动化研究所专知团队
@2017 专知
专 · 知
关注我们的公众号,获取最新关于专知以及人工智能的资讯、技术、算法、深度干货等内容。扫一扫下方关注我们的微信公众号。
点击“阅读原文”,使用专知!