mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-07 01:44:56 +08:00
48 lines
1.1 KiB
Go
48 lines
1.1 KiB
Go
package leetcode
|
|
|
|
// 解法一 二分
|
|
func mySqrt(x int) int {
|
|
if x == 0 {
|
|
return 0
|
|
}
|
|
left, right, res := 1, x, 0
|
|
for left <= right {
|
|
mid := left + ((right - left) >> 1)
|
|
if mid < x/mid {
|
|
left = mid + 1
|
|
res = mid
|
|
} else if mid == x/mid {
|
|
return mid
|
|
} else {
|
|
right = mid - 1
|
|
}
|
|
}
|
|
return res
|
|
}
|
|
|
|
// 解法二 牛顿迭代法 https://en.wikipedia.org/wiki/Integer_square_root
|
|
func mySqrt1(x int) int {
|
|
r := x
|
|
for r*r > x {
|
|
r = (r + x/r) / 2
|
|
}
|
|
return r
|
|
}
|
|
|
|
// 解法三 Quake III 游戏引擎中有一种比 STL 的 sqrt 快 4 倍的实现 https://en.wikipedia.org/wiki/Fast_inverse_square_root
|
|
// float Q_rsqrt( float number )
|
|
// {
|
|
// long i;
|
|
// float x2, y;
|
|
// const float threehalfs = 1.5F;
|
|
|
|
// x2 = number * 0.5F;
|
|
// y = number;
|
|
// i = * ( long * ) &y; // evil floating point bit level hacking
|
|
// i = 0x5f3759df - ( i >> 1 ); // what the fuck?
|
|
// y = * ( float * ) &i;
|
|
// y = y * ( threehalfs - ( x2 * y * y ) ); // 1st iteration
|
|
// // y = y * ( threehalfs - ( x2 * y * y ) ); // 2nd iteration, this can be removed
|
|
// return y;
|
|
// }
|