Given the recursive Formulation, fill in the array underneath:
an=an−1+d,∀n:0<n<x
a0 | a1 | a2 | a3 | a4 | a5 | a6 | a7 | a8 | a9 | a10 |
---|---|---|---|---|---|---|---|---|---|---|
Given the recursive formulation, fill in the missing cell underneath:
Di,j=max(Di−1.j−1+2,Di−1,j+3,Di,j−1+1) ,∀i,j:i≥j>1
Di,j | 1 | 2 |
---|---|---|
1 | ||
2 |