Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
sum = 0;
for (int i = 0; i < N; i++)
  for(int j = 0; j < i*i; j++)
    sum++;

I'm not entirely sure of my answer; I think the inner loop runs i^2 operations and the outer loop runs N times so the final answer would be O(N^3)?

share|improve this question
1  
I'm guessing the first two lines should be in the Code Block too? – Adam Jan 30 '11 at 17:20
1  
To the right when you were asking your question there was this handy How to Format box. Worth a read, as is the page linked from the [?] just above the question area. – T.J. Crowder Jan 30 '11 at 17:21

2 Answers

up vote 3 down vote accepted

The number of operations is sum = 1 + 4 + 9 + ... + N^2. This is because when i = 0, j will increment itself 0 times. When i = 1, j will increment itself once. When i = 2, j will increment itself 4 times, and so on.

This sum is equal to N(N + 1)(2N + 1)/6, so the algorithm is indeed O(N^3). You can prove this formula by induction.

share|improve this answer

That looks right to me (asymptotically).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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