博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
72. Edit Distance
阅读量:5158 次
发布时间:2019-06-13

本文共 2428 字,大约阅读时间需要 8 分钟。

ref: https://discuss.leetcode.com/topic/3136/my-o-mn-time-and-o-n-space-solution-using-dp-with-explanation/2

如果用dp[i][j]表示word1里[0,i]长的子串和word2[0,j]的最小编辑距离,那么状态转移方程应该这样构成:

dp[i][j] = dp[i-1][j-1], if word1[i] == word2[j]dp[i][j] = max{dp[i-1][j], dp[i][j-1], dp[i-1][j-1]} + 1, otherwise

如果word1[i] == word2[j]的时候不需要解释,

如果不相等的时候可能有三种操作,使两个字符串对齐:

  1. 替换字母:把word1[i] 替换成word2[j],那么是dp[i-1][j-1]+1

  2. 在Word1[i]后面强行插入一个word2[j]. 所以可能是dp[i][j-1]

  3. 直接把word1[i]删了,dp[i-1][j]

 

所以用二维矩阵表示很容易:

 

1 public int minDistance(String word1, String word2) { 2     int len1 = word1.length(); 3     int len2 = word2.length(); 4      5     //distance[i][j] is the distance converse word1(1~ith) to word2(1~jth) 6     int[][] distance = new int[len1 + 1][len2 + 1];  7     for (int j = 0; j <= len2; j++) 8         {distance[0][j] = j;} //delete all characters in word2 9     for (int i = 0; i <= len1; i++)10         {distance[i][0] = 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)) { //ith & jth15                 distance[i][j] = distance[i - 1][j - 1];16             } else {17                 distance[i][j] = Math.min(Math.min(distance[i][j - 1], distance[i - 1][j]), distance[i - 1][j - 1]) + 1;18             }19         }20     }21     return distance[len1][len2];        22 }

但是,可以像uniquePath一样把二维压成一维

pre表示上同一行前一列的值,f[j-1]表示f[i-1][j-1](因为pre没有更新进去),f[j]表示同一列上一行

 

1     public int minDistance(String word1, String word2) { 2         if(word1 == null || word2 == null) { 3             return -1; 4         } 5         int len1 = word1.length(); 6         int len2 = word2.length(); 7         int[] distance = new int[len2 + 1]; 8         for(int i = 0; i <= len2; i++) { 9             distance[i] = i;10         }11         for(int i = 1; i <= len1; i++) {12             int pre = i;13             for(int j = 1; j <= len2; j++) {14                 int cur = 0;15                 if(word1.charAt(i - 1) == word2.charAt(j - 1)) {16                     cur = distance[j - 1];17                 } else {18                     cur = Math.min(pre, Math.min(distance[j], distance[j - 1])) + 1;19                 }20                 distance[j - 1] = pre;21                 pre = cur;22             }23             distance[len2] = pre;24         }25         return distance[len2];26     }

 

转载于:https://www.cnblogs.com/warmland/p/5971909.html

你可能感兴趣的文章
博客盈利请先考虑这七点
查看>>
使用 XMLBeans 进行编程
查看>>
写接口请求类型为get或post的时,参数定义的几种方式,如何用注解(原创)--雷锋...
查看>>
【OpenJ_Bailian - 2287】Tian Ji -- The Horse Racing (贪心)
查看>>
Java网络编程--socket服务器端与客户端讲解
查看>>
List_统计输入数值的各种值
查看>>
学习笔记-KMP算法
查看>>
Timer-triggered memory-to-memory DMA transfer demonstrator
查看>>
跨域问题整理
查看>>
[Linux]文件浏览
查看>>
64位主机64位oracle下装32位客户端ODAC(NFPACS版)
查看>>
获取国内随机IP的函数
查看>>
今天第一次写博客
查看>>
江城子·己亥年戊辰月丁丑日话凄凉
查看>>
IP V4 和 IP V6 初识
查看>>
Spring Mvc模式下Jquery Ajax 与后台交互操作
查看>>
(转)matlab练习程序(HOG方向梯度直方图)
查看>>
『Raid 平面最近点对』
查看>>
【ADO.NET基础-数据加密】第一篇(加密解密篇)
查看>>
C语言基础小结(一)
查看>>