up vote 1 down vote favorite
share [g+] share [fb]

I need to calculate the time complexity of the following code:

for(i=1; i<=n; i++)
{
 for(j=1; j<=i; j++)
 {
   // Some code
 }
}

Is it O(n^2)?

link|improve this question

50% accept rate
Are you and "jobe" in the same class? – Paul Tomblin Feb 9 '09 at 0:08
My question is not exactly a duplicate of the one you linked to but it's a common question so I guess it's being asked in many forms. – yyy Feb 15 '09 at 12:14
@Paul - I have no idea who that guy is. – yyy Feb 15 '09 at 12:30
feedback

2 Answers

Indeed, it is O(n^2). See also a very similar example with the same runtime here.

link|improve this answer
feedback

Yes, one way quick way to get a big O notation is to look at nested for loops.

Typically (but not always) one loop nested in another will cause O(n^2).

Think about it, the inner loop is executed i times, for each value of i. The outer loop is executed n times.

thus you see a pattern of execution like this: 1 + 2 + 3 + 4 + ... + n times

Therefore, we can bound the number of code executions by saying it obviously executes more than n times (lower bound), but in terms of n how many times are we executing the code?

Well, mathematically we can say that it will execute no more than n^2 times, giving us a worst case scenario and therefore our Big-Oh bound of O(n^2). (For more information on how we can mathematically say this look at the Power Series)

Big-Oh doesn't always measure exactly how much work is being done, but usually gives a reliable approximation of worst case scenario.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.