72. Edit Distance (JAVA)

Given two words word1 and word2, find the minimum number of operations required to convert word1 to word2.

You have the following 3 operations permitted on a word:

  1. Insert a character
  2. Delete a character
  3. Replace a character

Example 1:

Input: word1 = "horse", word2 = "ros"
Output: 3
Explanation:
horse -> rorse (replace ‘h‘ with ‘r‘)
rorse -> rose (remove ‘r‘)
rose -> ros (remove ‘e‘)

Example 2:

Input: word1 = "intention", word2 = "execution"
Output: 5
Explanation:
intention -> inention (remove ‘t‘)
inention -> enention (replace ‘i‘ with ‘e‘)
enention -> exention (replace ‘n‘ with ‘x‘)
exention -> exection (replace ‘n‘ with ‘c‘)
exection -> execution (insert ‘u‘)

使用递归会造成Time limit exceeded

class Solution {
    public int minDistance(String word1, String word2) {
        StringBuffer strBuf1 = new StringBuffer(word1);
        StringBuffer strBuf2 = new StringBuffer(word2);

        return dfs(strBuf1,strBuf2,0,0,0);
    }

    public int insert(StringBuffer strBuf1, StringBuffer strBuf2, int i1, int i2, int depth){
        strBuf1.insert(i1, strBuf2.charAt(i2));
        int ret = dfs(strBuf1,strBuf2,i1+1, i2+1,depth+1);
        strBuf1.deleteCharAt(i1); //recover
        return ret;
    }

    public int delete(StringBuffer strBuf1, StringBuffer strBuf2, int i1, int i2, int depth){
        Character ch = strBuf1.charAt(i1);
        strBuf1.deleteCharAt(i1);
        int ret = dfs(strBuf1,strBuf2,i1, i2,depth+1);
        strBuf1.insert(i1,ch); //recover;
        return ret;
    }

    public int replace(StringBuffer strBuf1, StringBuffer strBuf2, int i1, int i2, int depth){
        Character ch = strBuf1.charAt(i1);
        strBuf1.setCharAt(i1, strBuf2.charAt(i2));
        int ret = dfs(strBuf1,strBuf2,i1+1, i2+1,depth+1);
        strBuf1.setCharAt(i1, ch);
        return ret;
    }

    private int dfs(StringBuffer strBuf1, StringBuffer strBuf2, int i1, int i2, int depth){
        while(i1 < strBuf1.length() && i2 < strBuf2.length() && strBuf1.charAt(i1) == strBuf2.charAt(i2)){
            i1++;
            i2++;
        }

        if(i1 == strBuf1.length() && i2 == strBuf2.length()) return depth;
        if(i1 == strBuf1.length()) return depth+strBuf2.length()-i2;
        if(i2 == strBuf2.length()) return depth+strBuf1.length()-i1;

        int ret = insert(strBuf1,strBuf2,i1,i2,depth);
        ret = Math.min(ret,delete(strBuf1,strBuf2,i1,i2,depth));
        ret = Math.min(ret,replace(strBuf1,strBuf2,i1,i2,depth));

        return ret;

    }

}

原文地址:https://www.cnblogs.com/qionglouyuyu/p/10913547.html

时间: 2024-07-30 18:04:46

72. Edit Distance (JAVA)的相关文章

LeetCode 72. Edit Distance Java

72.Edit Distance(编辑距离) 题目: 给定两个单词 word1 和 word2,计算出将 word1 转换成 word2 所使用的最少操作数 . 你可以对一个单词进行如下三种操作: 插入一个字符 删除一个字符 替换一个字符 思路: 多次选择试图得到最优解,那么考虑动态规划. 先假设word1有len1位,word2有len2位,建立数组step,step[i][j]就代表我们要将word1前 i 位转换为word2前 j 位的最少数量. 此时word1查找到第 i+1 位字母a,

72. Edit Distance &amp;&amp; 161. One Edit Distance

72. 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 characterb) Delete a c

刷题72. Edit Distance

一.题目说明 题目72. Edit Distance,计算将word1转换为word2最少需要的操作.操作包含:插入一个字符,删除一个字符,替换一个字符.本题难度为Hard! 二.我的解答 这个题目一点思路也没,就直接看答案了.用的还是dp算法,dp[n1+1][n2+1]中的dp[i][j]表示将word1的前i位,变为word2的前j位需要的步骤.注意第1行是空,第1列也是空. 1.第一行中,dp[0][i]表示空字符""到word2[0,...,i]需要编辑几次 2.第一列中,d

leetCode 72.Edit Distance (编辑距离) 解题思路和方法

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 char

Baozi Leetcode solution 72. Edit Distance

Problem Statement Given two words word1 and word2, find the minimum number of operations required to convert word1 to word2. You have the following 3 operations permitted on a word: Insert a character Delete a character Replace a character Example 1:

LeetCode 72 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) Repla

第十八周 Leetcode 72. Edit Distance(HARD) O(N^2)DP

Leetcode72 看起来比较棘手的一道题(列DP方程还是要大胆猜想..) DP方程该怎么列呢? dp[i][j]表示字符串a[0....i-1]转化为b[0....j-1]的最少距离 转移方程分三种情况考虑 分别对应三中操作 因为只需要三个值就可以更新dp[i][j] 我们可以把空间复杂度降低到O(n) Replace word1[i - 1] by word2[j - 1] (dp[i][j] = dp[i - 1][j - 1] + 1 (for replacement)); Delet

72. 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 characterb) Delete a characterc) Replace

72. Edit Distance (String; DP)

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 characterb) Delete a characterc) Replace