题目
实现 int sqrt(int x)
函数。
计算并返回 x 的平方根,其中 x 是非负整数。
由于返回类型是整数,结果只保留整数的部分,小数部分将被舍去。
示例 1:
1 | 输入: 4 |
示例 2:
1 | 输入: 8 |
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:
1 | Input: 4 |
Example 2:
1 | Input: 8 |
解题方法
二分法,取$0$为起点,$x$为终点,每次循环判断中点值$mid$的平方与$x$的大小,$mid^2<= x$,则起点$left+1$;否则终点$right-1$,直到$left>right$。值得注意的是取中点值时用int mid = left + (right - left) / 2
防止$int$型数据溢出,如果用int mid = (left + right) / 2
,left + right >= 2^32
时越界。这段代码跑了6ms,超过了97.63%的Java提交。
1 | public class Solution { |