首页 > 代码库 > [LeetCode]牛顿迭代法求平方根
[LeetCode]牛顿迭代法求平方根
题目
Implement int sqrt(int x).
Compute and return the square root of x.
思路
- 用Math.sqrt就没什么意义了
- 二分法估计也行,但是估计没有牛顿下山法快
- 牛顿下山法
公式推导:
在x0处的值是f(x0),这个点的切线可以表示为
y = f`(x0)*(x - x0)+f(x0)
求得当y = 0的时候,x1 = x0 - f(x0)/f`(x0)
由此迭代下去可以收敛
牛顿法的形象解法
代码
public class Solution { public int sqrt(int x) { double t = x; double lamda = 1; double oldT = t; while (Math.abs(t * t - x) >= 0.000000000000001 && lamda > 0.00000000000000000000001) { t = (t + x / t) / 2; lamda /= 2; oldT = t; } return (int) (t); } }
[LeetCode]牛顿迭代法求平方根
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。