if f(n,k) + f(n,k-1) = c1 * f(n-1,k-1) + c2 * f(n-1,k-2) then
what should be c1 and c2 in terms of big O notation.
Are they polynomial in k or constant?
I am not able to expand this recurrence properly.
if f(n,k) + f(n,k-1) = c1 * f(n-1,k-1) + c2 * f(n-1,k-2) then
what should be c1 and c2 in terms of big O notation.
Are they polynomial in k or constant?
I am not able to expand this recurrence properly.