Difference between revisions of "TADM2E 8.1"
From Algorithm Wiki
Line 1: | Line 1: | ||
− | This is the regular editing dynamic programming, except that the diagonal as an extra possibility | + | This is the regular editing dynamic programming, except that the diagonal as an extra possibility when a swap is possible. |
− | M[ | + | M[i, j] = M[i-2, j-2] + 1 ; if A[i] == B[j-1] and A[i-1] == B[j] where i,j > 1 |
Revision as of 06:50, 10 July 2018
This is the regular editing dynamic programming, except that the diagonal as an extra possibility when a swap is possible.
M[i, j] = M[i-2, j-2] + 1 ; if A[i] == B[j-1] and A[i-1] == B[j] where i,j > 1