Recent questions tagged time-complexity

1 1 vote
1 1 answer
494
494 views
For functions f, g: N $\rightarrow$ R, we say that f is o(g) (in words, f is little-oh of g) if $\displaystyle \lim_{n \to \infty}\frac{f(n)}{g(n)}$ = 0 as n $\rightarro...
0 0 votes
1 1 answer
215
215 views
Consider the following function.Function EXPL( int n ) { if ( n <= 2 ) then return 1 return EXPL( n / 2 ) * lg( n ) }What does EXPL ( n ) return, if $n$ is a power of $2?...