LeetCode : 72. Edit Distance 编辑距离

偏执的太偏执、 2021-09-18 18:06 495阅读 0赞

试题
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:

Input: word1 = “horse”, word2 = “ros”
Output: 3
Explanation:
horse -> rorse (replace ‘h’ with ‘r’)
rorse -> rose (remove ‘r’)
rose -> ros (remove ‘e’)
代码
类似思路

  1. class Solution {
  2. public int minDistance(String word1, String word2) {
  3. int len1 = word1.length(), len2 = word2.length();
  4. int[][] dp = new int[len1+1][len2+1];
  5. // 初始化:在0,0位置为0,在0,i或者i,0位置为i
  6. for(int i=1; i<=len1; i++){
  7. dp[i][0] = i;
  8. }
  9. for(int i=1; i<=len2; i++){
  10. dp[0][i] = i;
  11. }
  12. for(int i=1; i<=len1; i++){
  13. for(int j=1; j<=len2; j++){
  14. if(word1.charAt(i-1)==word2.charAt(j-1)){
  15. dp[i][j] = dp[i-1][j-1];
  16. }else{
  17. // 存在三种操作:替换(子问题变成i-1,j-1),插入(子问题变成i,j-1),删除(子问题变成i-1,j)
  18. dp[i][j] = Math.min(dp[i-1][j-1], Math.min(dp[i-1][j], dp[i][j-1])) + 1;
  19. }
  20. }
  21. }
  22. return dp[len1][len2];
  23. }
  24. }

发表评论

表情:
评论列表 (有 0 条评论,495人围观)

还没有评论,来说两句吧...

相关阅读