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

防止溢出 LeetCode69.Sqrt(x)

时间:2018-04-01 12:00:02      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:方案   val   ati   put   溢出   return   imp   body   etc   

题目描述:

Implement int sqrt(int x).

Compute and return the square root of x.

x is guaranteed to be a non-negative integer.

思路:二分查找,时间复杂度O(logn)。

if(mid的平方等于x或者mid的平方小于x且mid+1的平方大于x) return mid;

可能溢出的地方:

1、(left+right)/2 因为(left+right)可能大于Integer.MAX_VALUE。

解决方案:(left+right)/2 ==> left + (right-left)/2;

2、mid*mid    (mid+1)*(mid+1)

解决:if(mid*mid==x)  ==> if(mid==x/mid)

 

防止溢出 LeetCode69.Sqrt(x)

标签:方案   val   ati   put   溢出   return   imp   body   etc   

原文地址:https://www.cnblogs.com/rookielet/p/8685882.html

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