Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
2.8k views
Welcome To Ask or Share your Answers For Others

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...