I have been working in the time analysis for an algorithm and finally I got a curve that fits:
$O(2^{(\log_2(N)^{2.01})})$
N is the number of elements.
I'm right to say the above time complexity is quasi-polynomial?
I have been working in the time analysis for an algorithm and finally I got a curve that fits:
$O(2^{(\log_2(N)^{2.01})})$
N is the number of elements.
I'm right to say the above time complexity is quasi-polynomial?
Quasi-polynomial means different things to different people, but in many contexts it means a running time of the form $O(2^{O(\log^{O(1)} N)})$, to which your example conforms.
SET= {1,22,333,4444,55555,666666,7777777,10170128,10596586,10833720,11300828,12152672,16453700,18839720,19496780,22409892,2,493424,26606324,26985764,30017152,30169256,30345762,30371136,30561184,31495936}
N = 25 and P = 25, Log2(Max(Set)) = 25, or maybe I can use LOG2(SUM(SET)) = 29.
– Jesus Salas Dec 03 '14 at 18:10