[Solved]: standard sequential algorithm with polylog runtime?

Problem Detail: At the Wikipedia article on time complexity, only a PRAM example is given for polylogarithmic time. Let $T(n)$ denote the largest number of steps used by a machine to reach a final state on any input with size $n$ bits.

Is there a program for a standard sequential model of computation (e.g. a Turing machine or a sequential random-access machine), solving some natural problem, so that $T(n) in Theta((log n)^k)$ for some fixed $k>1$?

Asked By : András Salamon

Answered By : Realz Slaw

Where each operation is $ Oleft(log^knright)$ amortized/expected; I don’t know if necessarily $Thetaleft(log^knright)$:

There are also many algorithms with polylogarithmic factors; $tilde {O}(cdot)$ is notation that is used when hiding polylogarithmic factors. So $Oleft(nlog^k n right)intilde {O}(n)$.

Best Answer from StackOverflow

Question Source : http://cs.stackexchange.com/questions/16622