vote up 3 vote down star
void compute(int n) {
        int h = n;
        while (h > 1) {
            for (int i = 0; i < n; i++) {
                // do some operation
            }
            h = h / 2;
        }
 }

Can anybody please tell me what is the complexity( Big O ) of this function of n ??

This is actually an argument between me and a friend of mine. my stand: complexity is O(n*log(n)) friend's stand: log(n)

Thanks for your responses.

flag
1  
I'm a bit shocked that there are so many different answers. :-O – Botz3000 Aug 31 at 7:23
It converges, slowly towards a single one :-). Also it's still early in the morning, brains can't work properly yet :/ – Johannes Rössel Aug 31 at 7:31
It's not a question of time, it's a question of the availability of cafeïne :) – Martijn Aug 31 at 8:02
Why should there be only one answer? Ο only tells you a bound, not the bound and certainly not a tight bound. Now, if the OP had asked for Θ, that would be a different story, but since he explicitly asked for Ο, anything which is bigger than n∙log n is correct, therefore there are an infinite number of correct answers. – Jörg W Mittag Aug 31 at 9:08
1  
Sure, that's probably right. But i'm sure he wanted a precise answer, and maybe he just didn't find the Θ-key on his keyboard. :P – Botz3000 Aug 31 at 9:44
show 2 more comments

8 Answers

vote up 6 vote down

If this is homework (and it sounds a bit like it), then you should first try yourself.

Basically to get the complecity you look at the structure of the function, that is loops, nesting loops, etc. and determine how long they run, which inputs they depend on, etc.

In this case you have only one input, n. The local variable h starts with the same value as n, so it's essentially the same, complexity-wise, however, you need to keep track of how it's used.

You have essentially two nested loops here, one that runs to n, another one around it, that causes h to halve each time it's run. So this function is in O(n · log2n).

link|flag
The second loop doesn't run to n/2. Try n = a million. The second loop is not going to run half a million times. In fact I think this is O < O(n.sqrt(n)) – Kirk Broadhurst Aug 31 at 7:30
Agreed, it's not n/2 which is why I deleted (and then edited) it, but no, it's not the root, see Botz3000's answer. Try n = 1024, you'll see that you get 10 iterations for the outer loop which is log_2 1024, not √1024 (which would be 32). – Johannes Rössel Aug 31 at 7:38
It helps to notice that h decreases at the same rate as the remaining nodes in a binary tree search, which is commonly known to run at O(log n) – Botz3000 Aug 31 at 7:41
Yes, when putting a little thought into it, it certainly becomes clear. I wonder, though, whether I should integrate the starting blurp into your answer, as you were the first with the correct one. – Johannes Rössel Aug 31 at 7:50
Hmm, nevermind. – Botz3000 Aug 31 at 8:00
show 2 more comments
vote up 0 vote down

It appears to be O(n.sqrt(n))

The outer loop is obviously n, and the inner loop is sqrt(n).

EDIT: The inner loop is correctly log(n), because the number of iterations is x where 2^x = n.

link|flag
I should clarify: because the inner loop is 'halving' each time, it is order n^(1/2), which is the same as sqrt(n). – Kirk Broadhurst Aug 31 at 7:22
Ah, I see. My mistake, I was wrong on the n/2 part. But you're unfortunately equally wrong on the root. See Botz3000's answer. – Johannes Rössel Aug 31 at 7:24
vote up 15 vote down

I'd say since in every run, h is halved and n operations are done, it's O(n * log n).

link|flag
vote up 4 vote down

Some operation:

O(x)

The for loop: because n >= h and supposing h will not be modified during "some operation":

O(n*x)

The outer while loop:

O(log(n)*n*x)
link|flag
In Big-O-Notation, you can discard the constant x. – Botz3000 Aug 31 at 7:50
That is, if x is a constant. – lbp Aug 31 at 9:52
true, but i think he wouldn't have left the "x" operation commented out if it wasn't constant. – Botz3000 Aug 31 at 11:09
vote up -1 vote down

Well The answer is nlog2(n). I have simulated the result by changing the value of n over a long range.

The reason is pretty obvious:: as mentioned before, that inner loop runs n times and outer loop runs log2(n) therefore complexity is O(Nlog2(N)). The simulation results looks predominantly linear as N is a dominant component here.

img198.imageshack.us/img198/2595/complexity3.jpg

There is a small caution to be exercised in this logic. If inner loop 'n' is replaced by some constant say 100, then the entire complexity turns upside down. Complexity will then only be logarithmic O(log2(N)). Constants are not included in Big O notations ( 100*log2N) log2(N) will be the dominant component here.

img23.imageshack.us/img23/2066/complexity4.jpg

Hope this closes the thread!

link|flag
vote up 0 vote down

Execution time graphs:

complexity3

complexity4

link|flag
vote up 0 vote down

Anyone who says this function is log(n) is not your friend.

link|flag
vote up 0 vote down

It is clearly n*log(h).

link|flag

Your Answer

Get an OpenID
or

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