zoukankan      html  css  js  c++  java
  • *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:

    • Insert a character
    • Delete a character
    • Replace a character
    Example

    Given word1 = "mart" and word2 = "karma", return 3.

     1 /**
     2  * 本代码由九章算法编辑提供。没有版权欢迎转发。
     3  * - 九章算法致力于帮助更多中国人找到好的工作,教师团队均来自硅谷和国内的一线大公司在职工程师。
     4  * - 现有的面试培训课程包括:九章算法班,系统设计班,BAT国内班
     5  * - 更多详情请见官方网站:http://www.jiuzhang.com/
     6  */
     7 
     8 public class Solution {
     9     public int minDistance(String word1, String word2) {
    10         int n = word1.length();
    11         int m = word2.length();
    12         
    13         int[][] dp = new int[n+1][m+1];
    14         for(int i=0; i< m+1; i++){
    15             dp[0][i] = i; 
    16         }
    17         for(int i=0; i<n+1; i++){
    18             dp[i][0] = i;
    19         }
    20         
    21         
    22         for(int i = 1; i<n+1; i++){
    23             for(int j=1; j<m+1; j++){
    24                 if(word1.charAt(i-1) == word2.charAt(j-1)){
    25                     dp[i][j] = dp[i-1][j-1];
    26                 }else{
    27                     dp[i][j] = 1 + Math.min(dp[i-1][j-1],Math.min(dp[i-1][j],dp[i][j-1]));
    28                 }
    29             }
    30         }
    31         return dp[n][m];
    32     }
    33 }
  • 相关阅读:
    关于使用READ TABLE语句
    excel中CTRL+E的用法
    SAP查找用户的登录记录及修改记录
    PI接口开发之调java WS接口(转)
    ALV-TREE -转
    LOOP AT GROUP语法熟悉
    SAP库龄表(转)
    SAP RANG语法
    数据对象与数据类型
    Nginx 安装、配置及相关介绍
  • 原文地址:https://www.cnblogs.com/hygeia/p/4837713.html
Copyright © 2011-2022 走看看