What is O(log* N)
? I found it online with no description.
edit: I know big-Oh, the log* was the question
What is O(log* N)
? I found it online with no description.
edit: I know big-Oh, the log* was the question
O( log* N )
is "iterated logarithm":
In computer science, the iterated logarithm of n, written log* n (usually read "log star"), is the number of times the logarithm function must be iteratively applied before the result is less than or equal to 1.
It indicates how an algorithm performs: Big O Notation (scroll down to "Orders of common functions" and you will see a lot of samples, including yours)