成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

LeetCode[72] Edit Distance

call_me_R / 962人閱讀

摘要:復(fù)雜度思路考慮用二維來表示變換的情況。如果兩個(gè)字符串中的字符相等,那么如果兩個(gè)字符串中的字符不相等,那么考慮不同的情況表示的是,從字符串到的位置轉(zhuǎn)換到字符串到的位置,所需要的最少步數(shù)。

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) Replace a character

DP

復(fù)雜度
O(MN), O(MN)

思路
考慮用二維dp來表示變換的情況。
如果兩個(gè)字符串中的字符相等,a[i] = b[j],那么dp[i][j] = dp[i - 1][j - 1] + 1;
如果兩個(gè)字符串中的字符不相等,那么考慮不同的情況

insert: dp[i][j] = dp[i][j - 1] + 1;
replace: dp[i][j] = dp[i - 1][j - 1] + 1;
delete: dp[i][j] = dp[i - 1][j] + 1;
dp[i][j]表示的是,從字符串1到i的位置轉(zhuǎn)換到字符串2到j(luò)的位置,所需要的最少步數(shù)。

代碼

public int minDistance(String word1, String word2) {
    int len1 = word1.length();
    int len2 = word2.length();
    int[][] dp = new int[len1 + 1][len2 + 1];
    // initialize the dp array;
    for(int i = 0; i < len1; i ++) {
        dp[i + 1][0] = i + 1;
    }
    for(int j = 0; j < len2; j ++) {
        dp[0][j + 1] = j + 1;
    }
    //
    char[] arr1 = word1.toCharArray();
    char[] arr2 = word2.toCharArray();
    for(int i = 0; i < len1; i ++) {
        for(int j = 0; j < len2; j ++) {
            if(arr1[i] == arr2[j]) {
                dp[i][j] = dp[i - 1][j - 1] + 1;
            }
            else {
                dp[i][j] = Math.min(dp[i - 1][j - 1], 
                    Math.min(dp[i][j - 1], dp[i - 1][j])) + 1;
            }
        }
    }
    return dp[len1][len2];
}

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/65230.html

相關(guān)文章

  • leetcode72. Edit Distance

    摘要:題目要求輸入兩個(gè)字符串和,允許對(duì)進(jìn)行插入,刪除和替換的操作,計(jì)算出將轉(zhuǎn)化為所需要的最少的操作數(shù)。其中存儲(chǔ)的是轉(zhuǎn)換為的最小步數(shù)。首先從邊緣情況開始考慮。只要在此基礎(chǔ)上再進(jìn)行一次插入操作即可以完成轉(zhuǎn)換。 題目要求 Given two words word1 and word2, find the minimum number of steps required to convert wor...

    venmos 評(píng)論0 收藏0
  • 72 Edit Distance 以及兩個(gè)string比較的填表通解。

    摘要:給出兩個(gè)解,一個(gè)是填表,一個(gè)是記憶化搜索。因?yàn)樘畋硪欢〞?huì)把的表填滿。走出來的則是一條從起點(diǎn)到終點(diǎn)的線,不會(huì)填滿整個(gè)表。時(shí)間退化到,變成找路徑的時(shí)間。 72 Edit Distance Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. ...

    ormsf 評(píng)論0 收藏0
  • [Leetcode] One Edit Distance 編輯距離為一

    摘要:比較長度法復(fù)雜度時(shí)間空間思路雖然我們可以用的解法,看是否為,但中會(huì)超時(shí)。這里我們可以利用只有一個(gè)不同的特點(diǎn)在時(shí)間內(nèi)完成。 One Edit Distance Given two strings S and T, determine if they are both one edit distance apart. 比較長度法 復(fù)雜度 時(shí)間 O(N) 空間 O(1) 思路 雖然我們可以用...

    lewinlee 評(píng)論0 收藏0
  • Leetcode[161] One Edit Distance

    摘要:復(fù)雜度思路考慮如果兩個(gè)字符串的長度,是肯定當(dāng)兩個(gè)字符串中有不同的字符出現(xiàn)的時(shí)候,說明之后的字符串一定要相等。的長度比較大的時(shí)候,說明的時(shí)候,才能保證距離為。 LeetCode[161] One Edit Distance Given two strings S and T, determine if they are both one edit distance apart. Stri...

    周國輝 評(píng)論0 收藏0
  • [Leetcode] Edit Distance 最小編輯距離

    摘要:動(dòng)態(tài)規(guī)劃復(fù)雜度時(shí)間空間思路這是算法導(dǎo)論中經(jīng)典的一道動(dòng)態(tài)規(guī)劃的題。 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 h...

    zhangke3016 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

call_me_R

|高級(jí)講師

TA的文章

閱讀更多
最新活動(dòng)
閱讀需要支付1元查看
<