vote up 0 vote down star

Hi,

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)?

flag
Are you and "jobe" in the same class? – Paul Tomblin Feb 9 at 0:08
Duplicate of stackoverflow.com/questions/362059/… – Jay Conrod Feb 9 at 0:23
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 at 12:14
@Paul - I have no idea who that guy is. – yyy Feb 15 at 12:30

3 Answers

vote up 1 vote down

OK, thanks.

link|flag
You can say thanks by upvoting/accepting the answers :-) – jpalecek Feb 11 at 0:29
vote up 5 vote down

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|flag
vote up 7 vote down

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

link|flag

Your Answer

Get an OpenID
or

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