Last updated 3 years ago
见 p X(n+1)=[X(n)+p/Xn]/2
X(n+1)=[X(n)+p/Xn]/2
具体到开平方,可以参考下面两张图
注意返回int类型,python需要处理一下
时间复杂度 O(n^(1/2))
空间复杂度 O(1)