最小编辑代价-动态规划

最小编辑代价

http://www.nowcoder.com/questionTerminal/05fed41805ae4394ab6607d0d745c8e4

    public int minEditCost (String str1, String str2, int ic, int dc, int rc) {
        // write code here
        int len1 = str1.length(), len2 = str2.length();
        int[][] dp = new int[len1+1][len2+1];
        // 计算编辑的最小次数
//         for (int i=0;i<=len1;++i){
//             for (int j=0;j<=len2;++j){
//                 if (i == 0 || j == 0){
//                     dp[i][j] = Math.max(i, j);
//                 }else{
//                     if (str1.charAt(i-1) == str2.charAt(j-1)){
//                         dp[i][j] = Math.min(Math.min(dp[i][j-1], dp[i-1][j])+1, dp[i-1][j-1]);
//                     }else{
//                         dp[i][j] = Math.min(Math.min(dp[i][j-1], dp[i-1][j])+1, dp[i-1][j-1]+1);
//                     }
//                 }
//             }
//         }
        // 计算编辑的最小代价
        for (int i=0;i<=len1;++i){
            for (int j=0;j<=len2;++j){
                if (i == 0){
                    dp[i][j] = j*ic;
                }else if (j == 0){
                    dp[i][j] = i*dc;
                }else{
                    if (str1.charAt(i-1) == str2.charAt(j-1)){
                        dp[i][j] = Math.min(Math.min(dp[i][j-1]+ic, dp[i-1][j]+dc), dp[i-1][j-1]);
                    }else{
                        dp[i][j] = Math.min(Math.min(dp[i][j-1]+ic, dp[i-1][j]+dc), dp[i-1][j-1]+rc);
                    }
                }
            }
        }
        return dp[len1][len2];
    }
全部评论

相关推荐

白火同学:1、简历可以浓缩成一页,简历简历先要“简”方便HR快速过滤出有效信息,再要“历”用有效信息突出个人的含金量。 2、教育背景少了入学时间~毕业时间,HR判断不出你是否为应届生。 3、如果你的平台账号效果还不错,可以把账号超链接或者用户名贴到对应位置,一是方便HR知道你是具体做了什么内容的运营,看到账号一目了然,二是口说无凭,账号为证,这更有说服力。
面试被问期望薪资时该如何...
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务