摘要:給出兩個解,一個是填表,一個是記憶化搜索。因為填表一定會把的表填滿。走出來的則是一條從起點到終點的線,不會填滿整個表。時間退化到,變成找路徑的時間。
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表,一個是記憶化搜索。效果是memorized search更好。 因為dp填表一定會把O(m*n)的dp表填滿。 memorized search走出來的則是一條從起點到終點的線,不會填滿整個表。時間退化到O(m+n),變成找路徑的時間。
public class Solution { public int minDistance(String word1, String word2) { int m = word1.length(); int n = word2.length(); int[][] dp = new int[m+1][n+1]; for(int i=0; i<=m; i++) { for(int j=0; j<=n;j++) { if(i == 0) { dp[i][j] = j; } else if( j == 0){ dp[i][j] = i; } else if(word1.charAt(i-1) == word2.charAt(j-1) ) { dp[i][j] = dp[i-1][j-1]; } else { dp[i][j] = 1 + Math.min(Math.min(dp[i-1][j], dp[i][j-1]), dp[i-1][j-1]); } } } return dp[m][n]; } }
public class Solution { int[][] dp; public int minDistance(String word1, String word2) { dp = new int[word1.length()][word2.length()]; return minDistanceHelper(word1, word2, 0, 0); } private int minDistanceHelper(String word1, String word2, int index1, int index2) { if (index1 == word1.length()) return word2.length() - index2; if (index2 == word2.length()) return word1.length() - index1; if (dp[index1][index2] > 0) return dp[index1][index2]; int result; if (word1.charAt(index1) == word2.charAt(index2)) { result = minDistanceHelper(word1, word2, index1+1, index2+1); } else { // replace char "abac" , "abdc" replace "a" with "d" result = 1 + minDistanceHelper(word1, word2, index1+1, index2+1); // insert char into word1 "abc" , "abdc" insert "d" result = Math.min(result, 1 + minDistanceHelper(word1, word2, index1, index2+1)); // delete char from word1 "abdc" , "abc" delete "d" result = Math.min(result, 1 + minDistanceHelper(word1, word2, index1+1, index2)); } dp[index1][index2] = result; return result; } }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/66929.html
摘要:復雜度思路考慮用二維來表示變換的情況。如果兩個字符串中的字符相等,那么如果兩個字符串中的字符不相等,那么考慮不同的情況表示的是,從字符串到的位置轉換到字符串到的位置,所需要的最少步數。 LeetCode[72] Edit Distance Given two words word1 and word2, find the minimum number of steps require...
摘要:題目要求輸入兩個字符串和,允許對進行插入,刪除和替換的操作,計算出將轉化為所需要的最少的操作數。其中存儲的是轉換為的最小步數。首先從邊緣情況開始考慮。只要在此基礎上再進行一次插入操作即可以完成轉換。 題目要求 Given two words word1 and word2, find the minimum number of steps required to convert wor...
摘要:比較長度法復雜度時間空間思路雖然我們可以用的解法,看是否為,但中會超時。這里我們可以利用只有一個不同的特點在時間內完成。 One Edit Distance Given two strings S and T, determine if they are both one edit distance apart. 比較長度法 復雜度 時間 O(N) 空間 O(1) 思路 雖然我們可以用...
摘要:復雜度思路考慮如果兩個字符串的長度,是肯定當兩個字符串中有不同的字符出現的時候,說明之后的字符串一定要相等。的長度比較大的時候,說明的時候,才能保證距離為。 LeetCode[161] One Edit Distance Given two strings S and T, determine if they are both one edit distance apart. Stri...
此專欄文章是對力扣上算法題目各種方法的總結和歸納, 整理出最重要的思路和知識重點并以思維導圖形式呈現, 當然也會加上我對導圖的詳解. 目的是為了更方便快捷的記憶和回憶算法重點(不用每次都重復看題解), 畢竟算法不是做了一遍就能完全記住的. 所以本文適合已經知道解題思路和方法, 想進一步加強理解和記憶的朋友, 并不適合第一次接觸此題的朋友(可以根據題號先去力扣看看官方題解, 然后再看本文內容). 關...
閱讀 1120·2021-11-25 09:43
閱讀 1569·2021-10-25 09:47
閱讀 2466·2019-08-30 13:46
閱讀 753·2019-08-29 13:45
閱讀 1280·2019-08-26 13:29
閱讀 2990·2019-08-23 15:30
閱讀 1103·2019-08-23 14:17
閱讀 1326·2019-08-23 13:43