I have written a iterative function to generate result for expression:
F(n) = 3*F(n-1)+ F(n-2) + n
public int calculate(int n){
if(n == 0) {
return 4;
}
if(n ==1){
return 2;
}
else {
int f=0;
int fOne = 4;
int fTwo = 2;
for (int i=2;i<=n;i++) {
f = 3*fOne + fTwo + i;
fTwo = fOne;
fOne = f;
}
return f;
}
}
Can I modify the function to get result for negative integers as well ?
If your method is not meant to work with negative values, then you can blame the caller for passing a negative value. Simply throw an
InvalidParameterException
when n is negative.