Assume that methods m1 and m2 are static void and compute the same result by processing an argument of type Object[]. Empirically we find that m1 -> T(N) = 100N and m2 -> T(N) = 10Nlog2N where the times are in microseconds. For what size inputs is it better to use m1 and m2? So I would use m1 for big numbers while I would use m2 for small numbers right? just checking the answers.
|
|
|
|
|
|
|
You're looking for the value of |
||
|
|
|
|
Well, log2N is going to hit 10 when N is 1024, so according to the formulae you've given us, you would use the second one for However, from a practical point of view you should quite possibly pick one and maintain just that one. Do you expect very large inputs, or lots of small inputs? Is this definitely a bottleneck in your code? Which is the simpler algorithm? There's a lot more to deciding which algorithm is the best than just which is the fastest for a given input. I would rather maintain a simple algorithm which runs slightly slower than a fast but insanely complicated one. |
||||||||
|
|
|
lol george stop skipping my lectures |
||
|
|
|
|
Look at this: http://www.wolframalpha.com/input/?i=plot+100*n+and+plot+10*n*log2(n) I haven't figured out yet how to modify the scale though. In any case, for future reference. |
||
