Redirected
retagged by
905 views
0 votes
0 votes

Consider the following pseudo code written in C style:

bool fun(int arr[],int n,int X)
{
    if(X == 0) 
        return true;
    if(n == 0 && X !=0)
        return false;
    if(arr[n-1]*arr[n-1] > X)
        return fun(arr, n-1, X);
    return fun(arr,n-1,X) || fun(arr,n-1,X - arr[n-1]*arr[n-1]);
}

Which of the following is true about the above code:

(a) Time complexity of fun() is O(2n) and it requires O(n) extra space

(b) Time complexity of fun() is O(2n) and it requires O(n2) extra space

(c) Time complexity of fun() is O(n2) and it requires O(n) extra space

(d) Time complexity of fun() is O(n2) and it requires O(n2) extra space

retagged by

2 Answers

6 votes
6 votes
See how many function calls are active in the stack. Here, function 'fun(n)' can give a call to fun(n-1), which inturn will call fun(n-2) and so on.. till n=0.

When n becomes 0, fun will start returning, ie, it starts popping out of the stack. So, at max, there are n to 0, functions in the stack. Hence space complexity is O(n).

Related questions

1 votes
1 votes
1 answer
1
0 votes
0 votes
2 answers
3
Rustam Ali asked Sep 3, 2018
884 views
Find time complexity of below Program?A(n){if(n<=1) return;elsereturn $A(\sqrt{n})$ ;}
9 votes
9 votes
2 answers
4
vineet.ildm asked Nov 7, 2016
5,920 views
Why space complexity of heapsort is O(1)....and why not O(logn)..because of space required by recursion calls which is equivalent to height of the tree...where am i getti...