[LeeCode]Edit Distance

Given two words word1 and word2,
find the minimum number of steps required to convert word1 to word2.
(each operation is counted as 1 step.)

You have the following 3 operations permitted on a word:

a) Insert a character
b) Delete a character
c) Replace a character

经典DP ,引wiki:

      d[i, j] := 最小值(
                                d[i-1, j  ] + 1,     // 刪除
                                d[i  , j-1] + 1,     // 插入
                                d[i-1, j-1] + cost   // 替換
    str1[i] = str2[j]  cost := 0
                                否則 cost := 1

)

编程之美上也有详细阐述,算法导论习题。

代码如下:

class Solution {
public:
    int minDistance(string word1, string word2) {
        // Start typing your C/C++ solution below
        // DO NOT write int main() function
        int len1 = word1.size();
		int len2 = word2.size();
		if(len1==0)
			return len2;
		if(len2==0)
			return len1;
		vector <vecotr <int> > f(len1+1,vector<int>(len2+1));
		for(int i = 0 ; i <= len1 ; i++)
			f[i][0] = i;
		for(int j =0 ; j <= len2 ; j++)
			f[0][j] = j;
		for(int i = 1 ; i<= len1 ; i++)
			for(int j = 1; j<= len2 ; j++)
			{
			int cost = 1;
			if(word1[i-1]==word2[j-1])
				cost =0;
			f[i][j] = min(f[i-1][j-1]+cost,min(f[i][j-1]+1, f[i-1][j]+1));
			}
		return f[len1][len2];
	}
};

原文链接: https://www.cnblogs.com/shalk/archive/2012/11/26/9769639.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

    [LeeCode]Edit Distance

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/70612

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月9日 下午2:25
下一篇 2023年2月9日 下午2:26

相关推荐