开发者

Landau notation (ide) tools support

It is good idea to have impotant information during develop开发者_如何学Pythoning like Landau notation to know functions's time costs. So it should be documented in sources isn't it?

I'm looking for tools that can calculate it.


In the general case, the asymptotic complexity of an arbitrary algorithm is undecidable, by Rice's theorem.

But in practice, you can often make a good guess by repeatedly running the algorithm on various inputs (of sizes spanning several orders of magnitude), recording actual CPU time, and fitting a curve. (You should throw out data points with very short runtimes, since these will be dominated by noise. Also, on JITed runtimes like the Java Virtual Machine, make sure to run the function for a while before starting the timing, to make sure the VM has warmed up.)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜