What is O(log* N)?
问题 What is O(log* N) ? I know big-Oh, the log* is unknown. 回答1: 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. 回答2: The log* N bit is an iterated algorithm which grows very slowly, much slower than just log N . You basically just keep iteratively 'logging' the answer until it gets below one (E.g: