Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.7k views
in Technique[技术] by (71.8m points)

time complexity - When can a quadratic algorithm be better than an logarithmic one?

As in when there are two algorithms that solve the same problem, one being quadratic and one being logarithmic, what context would mean it would be preferable to use the quadratic one, despite the implicit detriments.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

A quadratic algorithm can be better up to a certain point, if the logarithmic one has a significantly larger constant, for example: first algorithm performs 1000 * logN operations (exactly - for simplicity), and another one - 3 * N^2. Then, up to about N = 20, the quadratic algorithm will perform better.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...