Problem
Implement int sqrt(int x)
.
Compute and return the square root of x, where x is guaranteed to be a non-negative integer.
Since the return type is an integer, the decimal digits are truncated and only the integer part of the result is returned.
Example 1:
Input: 4
Output: 2
Example 2:
Input: 8
Output: 2
Explanation: The square root of 8 is 2.82842..., and since
the decimal part is truncated, 2 is returned.
Solution
-
start <= end
/start < end
/start + 1 < end
class Solution {
public int sqrt(int x) {
if (x < 1) return 0;
int start = 1;
int end = x;
while (start < end) {
int mid = start + (end-start)/2;
if (mid <= x/mid && mid+1 > x/(mid+1)) {
return mid;
} // The key to success
if (mid <= x/mid) start = mid;
else end = mid;
}
return start;
}
}
start+1 < end
class Solution {
public int sqrt(int x) {
if (x < 1) return 0;
int start = 1, end = x/2+1;
while (start+1 < end) {
int mid = start+(end-start)/2;
if (mid <= x/mid) start = mid;
else end = mid;
}
return start;
}
}
update 2018-11
class Solution {
public int mySqrt(int x) {
if (x < 0) return -1;
int left = 1, right = x;
while (left <= right) {
int mid = left+(right-left)/2;
if (mid <= x/mid) {
if (mid+1 > x/(mid+1)) return mid;
else left = mid+1;
} else {
right = mid-1;
}
}
return 0;
}
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。