在数字化转型中,选择合适的跨平台开发框架不仅能提高效率,还有助于确保数据安全与合规性。
778
2022-10-01
[leetcode] 583. Delete Operation for Two Strings
Description
Given two words word1 and word2, find the minimum number of steps required to make word1 and word2 the same, where in each step you can delete one character in either string.
Example 1:
Input: "sea", "eat"Output: 2Explanation: You need one step to make "sea" to "ea" and another step to make "eat" to "ea".
Note:
The length of given words won’t exceed 500.Characters in given words can only be lower-case letters.
分析
题目的意思是:给定两个单词word1,word2.现在每一步可以删除单词中的一个字符,问最少需要多少步使得两个单词相等。
由于我们dp数组的大小定义的是(m+1) x (n+1),所以我们比较的是word1[i-1]和word2[j-1]如果相同: dp[i][j] = dp[i-1][j-1]如果不同: dp[i][j]=1+min(dp[i-1][j],dp[i][j-1]);其中dp[i][j]表示word1的前i个字符和word2的前j个字符组成的两个单词,能使其变相同的最小的步数。“sea"和"eat”,当我们比较第一个字符,发现’s’和’e’不相等,下一步就要错位比较啊,比较sea中第一个’s’和eat中的’a’,sea中的’e’跟eat中的第一个’e’相比,这样我们的dp[i][j]就要取dp[i-1][j]跟dp[i][j-1]中的较小值,然后就直接得出结果了。
class Solution {public: int minDistance(string word1, string word2) { int m=word1.length(); int n=word2.length(); vector
参考文献
[LeetCode] Delete Operation for Two Strings 两个字符串的删除操作
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~