for(i = 1; i < n; i *= 2) {
sum++;
for(j = 0; j < n; j += 2)
total++;
}
Time complexity:
O(log(n))
O(log(n))
O(n)*O(log(n))
O(n)*O(log(n))
So final answer is: O(log(n))
Is this correct?
for(i = 1; i < n; i *= 2) {
sum++;
for(j = 0; j < n; j += 2)
total++;
}
Time complexity:
O(log(n))
O(log(n))
O(n)*O(log(n))
O(n)*O(log(n))
So final answer is: O(log(n))
Is this correct?
the complexity will be something like this :
so the complexity is :