Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to learn Big-O notation but i have difficulties in calculating time complexity of recursive functions.

Can you help me to understand the time complexity of following example?

public int recursiveFunction(int n) {
    if (n == 0) {
        return 0;
    }

    return Math.max(recursiveFunction(rand(n)) + 2,recursiveFunction(n - 1));
}

public int rand(int n) {
    return new Random().nextInt(n - 1);
}

Thanks.

share|improve this question
1  
The result of your function is a stack overflow (and it is not a valid Java code) – Kru Jan 2 at 13:33
3  
... and the theoretical complexity is O(∞). You recur unconditionally, you have no base case. – Marko Topolnik Jan 2 at 13:34
I know it is not a valid java code. It is something like pseudo code. I just want to learn the analysis. – user987654 Jan 2 at 13:35
updated code. result is not important.I just want to know that how many times does it run and what will be the time complexity. – user987654 Jan 2 at 13:39

3 Answers

The time will depend on what rand(n) returns, but if you take the worst-case, this will be n-2. So the code simplifies to:

public int recursiveFunction(int n) {
    if (n == 0) {
        return 0;
    }

    return Math.max(recursiveFunction(n - 2) + 2,recursiveFunction(n - 1));
}

which has an asymptotic upper bound equal to that of:

public int recursiveFunction(int n) {
    if (n == 0) {
        return 0;
    }

    recursiveFunction(n-1);
    recursiveFunction(n-1);

    return 0;
}

which is a recursion with a depth of n and a branch factor of 2, so O(2^n) time-complexity.

share|improve this answer

Recursive functions is not a good place to start learning about complexity. Even a relatively simple recursive function can require quite complex calculations to determine complexity.

For recursiveFunction(n), you call recursiveFunction(n-1) and recursiveFunction(a) where a < n-1, so at worst that is recursiveFunction(n-1) once and recursiveFunction(n-2) once. That has the same complexity as a Fibonacci series, it's complexity is O(2^n). You'll note the algorithm in the link looks very similar to yours.

share|improve this answer
Thanks for your response. I know the simple calculations,but it is hard to understand the one with recursive functions. – user987654 Jan 2 at 14:21

You have no understood the problem of your code. Because your code creates random values its runtime complexity cannot be determined. Because of your '+2' and '-1' it is also possible for the program to never end. However, this is not likely but possible, thus one can only say it is O(infinite).

Usual cases of the bigO notation:

You have only one loop:

for(int k=0;k<n;++k) {}

this comes to O(n), because you have n iterations

Two or more loops in sequence:

for(int k=0;k<n;++k) {}
for(int l=0;l<n;++l) {}

comes to O(2*n), but constants do not matter on bigO, so it is O(n)

Entangled loops:

for(int k=0;k<n;++k) {
    for(int l=0;l<n;++l) {
    }
}

is O(n²),

for(int k=0;k<n;++k) {
    for(int l=0;l<n;++l) {
        for(int m=0;m<n;++m) {
        }
    }
}

is O(n³) and so on

And the most common complexity you will encounter for search/comparison algorithms is

for(int k=0;k<n;++k) {
    for(int l=k;l<n;++l) {// note here: l=k instead of l=0
    }
}

Is O(n*log(n))

For more details use google.

share|improve this answer
1  
(1) for(int k=0;k<n;++k) for(int l=k;l<n;++l) ... is O(n^2). (2.a) rand(n) can never return a value greater than n-2, and (2.b) the +2 doesn't matter since it's just added to the output of recursiveFunction to determine the return value, so the algorithm will terminate (in O(2^n), see my answer). – Dukeling Jan 2 at 14:29

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.