首页 > 其他 > 详细

Edit Distance

时间:2014-02-06 16:46:58      阅读:372      评论:0      收藏:0      [点我收藏+]

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

bubuko.com,布布扣
 1 public class Solution {
 2     public int minDistance(String word1, String word2) {
 3         int len1 = word1.length();
 4         int len2 = word2.length();
 5         int dp[][] = new int[len1+1][len2+1];
 6         for(int i=0;i<=len1;i++){
 7             for(int j=0;j<=len2;j++){
 8                 if(i==0){
 9                     dp[i][j]=j;
10                 }
11                 else if(j==0){
12                     dp[i][j]=i;
13                 }
14                 else if(word1.charAt(i-1)==word2.charAt(j-1)){
15                     dp[i][j] = dp[i-1][j-1];
16                 }
17                 else{
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 }
View Code

Edit Distance

原文:http://www.cnblogs.com/krunning/p/3538764.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!