我已经编写了一个Java程序来使用牛顿方法找到给定数的平方根,该程序完全按预期工作,但是我在时间复杂度方面并不擅长。
那么您能告诉我以下程序的时间复杂度是多少。 欢迎提出改进建议。
sqrt方法的大O表示法是什么?
/**Find square root of a number using Newton's method**/
/**Specify number of correct precision required in a square root**/
/**Also specify maxIterations limit so that program won't go into into infinity loop**/
import java.util.*;
public class SqrtNewton{
public static void main(String[] args){
try{
long startTime = System.nanoTime();
Scanner scanner = new Scanner(System.in);
//Number for which square root has to be found
System.out.println("Enter number - ");
long number = scanner.nextLong();
//Maximum no of iterations if program does not found Square root untill then
int maxIterations = 40;
//precision value to untill correct square root is required
int precision = 3;
//Value of x to start with for newton's method
double x = 1;
//Negative numbers do not have square roots
if (number < 0) throw new IllegalArgumentException("Provided value is invalid");
//iteration start
int itr = 0;
//epsilon value to check equality of double value untill given precision
double epsilon = Math.pow(10,-precision);
double squareRoot = sqrt(number,maxIterations,x,itr,epsilon);
System.out.println("Square Root Of "+number+" With correct precision "+precision+" is :- "+squareRoot);
System.out.printf("Square Root Of %d With correct precision %d is :- %."+precision+"f",number,precision,squareRoot);
System.out.println();
long endTime = System.nanoTime();
System.out.println("Total Running Time - "+(endTime - startTime));
}catch(Exception e){
//e.printStackTrace();
System.err.println("Exception - "+e.getMessage());
}
}
private static double sqrt(long number,int maxIterations,double x,int itr,double epsilon) throws MaxIterationsReachedException{
if(itr >= maxIterations){
throw new MaxIterationsReachedException(maxIterations);
}else{
double x1 = (x + (number/x))/2;
/**To check equality of double number untill given precision**/
/**This will check 1.1333334 - 1.1333334 < 0.000001(if precision is 6)**/
if(Math.abs(x1 - x) <= epsilon){
System.out.println("Total Iterations - "+itr);
return x1;
}
else
return sqrt(number,maxIterations,x1,++itr,epsilon);
}
}
}
class MaxIterationsReachedException extends Exception{
MaxIterationsReachedException(int maxIterations){
super("Maximum iterations limit "+maxIterations+" reached Increase maxIterations limit if required");
}
}
答案 0 :(得分:0)
我会说复杂度是O(n),其中n是maxIterations。 您无需以递归方式编写此算法,可以使用如下循环:
private static double sqrt2(long number, int maxIterations, double x, int itr, double epsilon)
throws MaxIterationsReachedException {
double x1 = (x + (number / x)) / 2;
while (Math.abs(x1 - x) > epsilon) {
if (itr >= maxIterations) {
throw new MaxIterationsReachedException(maxIterations);
}
x = x1;
x1 = (x + (number / x)) / 2;
itr++;
}
System.out.println("Total Iterations - " + itr);
return x1;
}
答案 1 :(得分:0)
您的代码是Newton方法的实现,用于解决x ^ 2-c = 0。
众所周知,它具有二次收敛性,这意味着如果您想要D位精度,则将花费大约log(D)迭代,尽管这取决于您最初对平方根的复杂猜测。您可以阅读维基百科上的二次收敛证明:https://en.wikipedia.org/wiki/Newton%27s_method,其中包括二次收敛的前提条件。
由于您的初始猜测始终为“ 1”,因此这可能不满足二次收敛的条件,如果我的记忆正确,这意味着对于大x,在某些步骤中会出现缓慢收敛,然后通过快速二次收敛。计算实际时间复杂度的细节非常复杂,而且可能超出了您的期望。