How to say something is $O(\sqrt{\log n})$ in word?

476 Views Asked by At

When something is $O(\log n)$ we say it's logarithmic in $n$. How can we say it in "word" when something is $O(\sqrt{\log n})$?

1

There are 1 best solutions below

0
On

In theoretical computer science we call an algorithm that runs in $O((\log n)^c)$ time for some constant $c > 0$ a polylogarithmic algorithm or "polylog" for short.