1.题目描述
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.
实现 int sqrt(int x) 函数。
计算并返回 x 的平方根,其中 x 是非负整数。
由于返回类型是整数,结果只保留整数的部分,小数部分将被舍去。
Example 1:
1 | Input: 4 |
Example 2:
1 | Input: 8 |
2.Solutions
牛顿迭代法
1 | public static int sqrt(int r) { |
二分查找法
1 | public static int sqrt2(int x) { |