+ 2
Time Complexity
Can anyone please tell me the time complexity of below code and how? for(int i = 1;i<n;i=i*2){ for(int j=1;j<i;j++){ } }
4 Answers
+ 4
NBâ but the inner loop does execute when i > 1. That starts happening upon the second pass of the outer loop. I tried to reduce the inner loop series into O() terms, but my math is too weak.
[The compiler would optimize such a loop into oblivion because there is no work being done inside. In that case it's O(0)!]
+ 3
Oh yes that was error in thinking âeach secondâ and can be replaced.
+ 1
The outer loop performs n/2 (each second of n) iterations, and the inner loop performs i iterations for each iteration of the outer loop, where i is the current iteration count of the outer loop.
The total number of iterations performed by the inner loop can be calculated by summing the number of iterations performed in each iteration of the outer loop, which is given by the formula
sum(i) from i=1 to outerRange, which is equal to outerRange * (outerRange + 1) / 2
that equals to
n/2 * ((n/2 + 1) / 2) = time complexity
0
JaScript, if you squint a little more you'll notice the outer loop incrementer does not add 2; rather it multiplies by 2. So log2(n) is correct, as NBâ said, for the number of outer loop iterations. The total inner loop iterations is the sum of 0, 1, 3, 7, 15, ..., n/2. Now figure out the general expression of that series summation and it will lead to the complexity solution.