Question: find the time complexity for(int i=0; i <10; i++) for(int j=0; j 0; k--) cout < < i < < < < j
find the time complexity
for(int i=0; i<10; i++)
for(int j=0; j for(int k=N-2; k>0; k--) cout << i << " " << j << endl; A) O(log N) B) O(N log N) C) O(N) D) O(N2) E) O(N3)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
