码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode 583. 两个字符串的删除操作

时间:2018-09-09 12:08:45      阅读:308      评论:0      收藏:0      [点我收藏+]

标签:etc   mini   min   int   type   leetcode   string   col   ini   

  


给定两个单词 word1 和 word2,找到使得 word1 和 word2 相同所需的最小步数,每步可以删除任意一个字符串中的一个字符。

示例 1:

输入: "sea", "eat"
输出: 2
解释: 第一步将"sea"变为"ea",第二步将"eat"变为"ea"

说明:

  1. 给定单词的长度不超过500。
  2. 给定单词中的字符只含有小写字母。

python解法 动态规划 与两个字符串的最小ASCII删除和 相同

 

class Solution:
    def minDistance(self, word1, word2):
        """
        :type word1: str
        :type word2: str
        :rtype: int
        """
        len1=len(word1)
        len2=len(word2)

        dp=[[0 for i in range(len2+1)] for j in range(len1+1)]
        dp[0][0]=0
        for i in range(1,len2+1):
            dp[0][i]=dp[0][i-1]+1
        for i in range(1,len1+1):
            dp[i][0]=dp[i-1][0]+1
            for j in range(1,len2+1):
                if word1[i-1]==word2[j-1]:
                    dp[i][j]=dp[i-1][j-1]
                else:
                    dp[i][j]=min(dp[i-1][j]+1,dp[i][j-1]+1)
        return dp[len1][len2]

 

leetcode 583. 两个字符串的删除操作

标签:etc   mini   min   int   type   leetcode   string   col   ini   

原文地址:https://www.cnblogs.com/Lynwood/p/9612463.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!