Swift   发布时间:2022-03-31  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了[Swift]LeetCode583. 两个字符串的删除操作 | Delete Operation for Two Strings大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

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",

Given two words @H_404_7@word1 and @H_404_7@word2,find the minimum number of steps required to make @H_404_7@word1 and @H_404_7@word2 the same,where in each step you can delete one character in either String.@H_197_19@

Example 1:@H_197_19@

Input: "sea","eat"
Output: 2
Explanation: You need one step to make "sea" to "ea" and another step to make "eat" to "ea". 

Note:@H_197_19@

  1. The length of given words won‘t exceed 500.
  2. Characters in given words can only be lower-case letters.

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

示例 1:@H_197_19@

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

说明:@H_197_19@

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

124ms@H_197_19@

 1 class Solution {
 2     func minDistance(_ word1: String,_ word2: String) -> Int {
 3         if word1.count < word2.count {
 4             return minDistance(word2,word1)
 5         }
 6         var cache = Array(repeaTing: Array(repeaTing: -1,count: word2.count),count: word1.count)
 7         return word1.count + word2.count - lcs(Array(word1),Array(word2),word1.count - 1,word2.count - 1,&cachE)*2
 8     }
 9     
10     func lcs(_ word1:[Character],_ word2:[Character],_ i:Int,_ j:Int,_ cache:inout [[Int]]) -> Int {
11         var maxLenght = 0
12         if i < 0 || j < 0 {
13             return maxLenght
14         }
15         if cache[i][j] != -1 {
16             return cache[i][j]
17         }
18         if word1[i] == word2[j] {
19             maxLenght = max(maxLenght,lcs(word1,word2,i - 1,j - 1,&cachE) + 1)
20         } else {
21             maxLenght = max(maxLenght,i,&cachE),j,&cachE))
22         }
23         cache[i][j] = maxLenght
24         return maxLenght
25     }
26 }

132ms@H_197_19@

 1 class Solution {
 2     func minDistance(_ word1: String,_ word2: String) -> Int {
 3         if word1.count == 0 {
 4             return word2.count
 5         }
 6         if word2.count == 0 {
 7             return word1.count
 8         }
 9         let len = longestCommonSequence(Array(word1),Array(word2))
10         return word1.count + word2.count - 2 * len
11     }
12     
13     func longestCommonSequence(_ String1: [Character],_ String2: [Character]) -> Int {
14         let m = String1.count
15         let n = String2.count
16         var dp = [[Int]]()
17         for _ in 0 ..< m + 1 {
18             let array = [Int].init(repeaTing: 0,count: n + 1)
19             dp.append(array)
20         }
21         
22         for i in 0 ..< m {
23             for j in 0 ..< n {
24                 if String1[i] == string2[j] {
25                     dp[i+1][j+1] = dp[i][j] + 1
26                 } else {
27                     dp[i+1][j+1] = max(dp[i][j+1],dp[i+1][j])
28                 }
29             }
30         }
31         return dp[m][n]
32     }
33 }

136ms@H_197_19@

 1 class Solution {
 2     func minDistance(_ word1: String,_ word2: String) -> Int {
 3     var word1 = Array(word1)
 4     var word2 = Array(word2)
 5     var dp = [[Int]](repeaTing: [Int](repeaTing: 0,count: word2.count + 1),count: word1.count + 1)
 6     
 7     for row in 0..<dp.count{
 8         dp[row][0] = row
 9     }
10     
11     for column in 0..<dp[0].count{
12         dp[0][column] = column
13     }
14     
15     for row in 1..<dp.count{
16         for column in 1..<dp[row].count{
17             if word1[row-1] == word2[column-1]{
18                 dp[row][column] = dp[row - 1][column - 1]
19             }else{
20                 dp[row][column] = min(dp[row - 1][column],dp[row][column - 1]) + 1
21             }
22         }
23     }
24     
25     return dp.last!.last!
26   }
27 }

156ms@H_197_19@

 1 class Solution {
 2     func minDistance(_ word1: String,_ word2: String) -> Int {
 3         let word1 = Array(word1)
 4         let word2 = Array(word2)
 5         let len1 = word1.count
 6         let len2 = word2.count
 7         guard len1 != 0 else { return len2 }
 8         guard len2 != 0 else { return len1 }
 9         
10         var dp: [[Int]] = Array(repeaTing: Array(repeaTing: 0,count: len2 + 1),count: len1 + 1)
11         for i in 0 ... len1 {
12             dp[i][0] = i
13         }
14         
15         for i in 0 ... len2 {
16             dp[0][i] = i
17         }
18         
19         for i in 1 ... len1 {
20             for j in 1 ... len2 {
21                 if word1[i - 1] == word2[j - 1] {
22                     dp[i][j] = dp[i - 1][j - 1]
23                 } else {
24                     dp[i][j] = min(dp[i - 1][j - 1] + 2,min(dp[i][j - 1] + 1,dp[i - 1][j] + 1))
25                 }
26             }
27         }
28         
29         return dp[len1][len2]
30     }
31 }
Runtime: 732 ms
Memory Usage: 20.4 MB
 1 class Solution {
 2     func minDistance(_ word1: String,_ word2: String) -> Int {
 3         var n1:Int = word1.count
 4         var n2:Int = word2.count
 5         var memo:[[Int]] = [[Int]](repeaTing:[Int](repeaTing:0,count:n2 + 1),count:n1 + 1)
 6         return Helper(word1,0,&@H_562_54@memo)
 7     }
 8     
 9     func Helper(_ word1: String,_ word2: String,_ p1:Int,_ p2:Int,_ memo:inout [[Int]]) -> Int
10     {
11         if memo[p1][p2] != 0
12         {
13             return memo[p1][p2]
14         }
15         var n1:Int = word1.count
16         var n2:Int = word2.count
17         if p1 == n1 || p2 == n2
18         {
19             return n1 - p1 + n2 - p2            
20         }
21         if word1[p1] == word2[p2]
22         {
23             memo[p1][p2] = Helper(word1,p1 + 1,p2 + 1,&@H_562_54@memo)
24         }
25         else
26         {
27              memo[p1][p2] = 1 + min(Helper(word1,p2,&memo),Helper(word1,p1,&@H_562_54@memo))
28         }
29         return memo[p1][p2]
30     }
31 }
32 
33 extension String {        
34     //subscript函数可以检索数组中的值
35     //直接按照索引方式截取指定索引的字符
36     subscript (_ i: int) -> Character {
37         //读取字符
38         get {return self[index(starTindex,offsetBy: i)]}
39     }
40 }

大佬总结

以上是大佬教程为你收集整理的[Swift]LeetCode583. 两个字符串的删除操作 | Delete Operation for Two Strings全部内容,希望文章能够帮你解决[Swift]LeetCode583. 两个字符串的删除操作 | Delete Operation for Two Strings所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。