I was thinking the time complexity will be O(n^2*logn). Is it correct. If not, What will be time complexity?
for(i = 0; i < n; i++)
for(j = 0; j < n; j++)
for(k = 0; k < 100000; k++)
a++;
I was thinking the time complexity will be O(n^2*logn). Is it correct. If not, What will be time complexity?
for(i = 0; i < n; i++)
for(j = 0; j < n; j++)
for(k = 0; k < 100000; k++)
a++;