Gate CS-2008 Question Paper With Solutions

Q. 12 Consider the following C functions:

int f1 (int n)
{
If(n==0||n==1)
return n;
else
return(2)f1(n-1)+3)f1(n-2));
}
int f2(int n)
{
int i;
int X[N], Y[N], Z[N];
X[1]=1;Y[1]=2;Z[1]=3;
for (i=2;i<=n;i++){
X[i]=Y[i-1]+Z[i-2];
Y[i]=2)X[i];
z[i]=3)X[i];
}
return X[n];
}

The running time of f1(n) and f2(n) are

Gate CS-2008 Question Paper With Solutions

Answer: (B)

Explanation:

Gate CS-2008 Question Paper With Solutions

Learn More:   Gate CS-2003 Question Paper With Solutions

LEAVE A REPLY

Please enter your comment!
Please enter your name here