Skip to content

Commit 6b14ecd

Browse files
committed
feat: resolved with cache
1 parent 10f4c56 commit 6b14ecd

File tree

1 file changed

+14
-7
lines changed
  • delete_operation_for_two_strings/src

1 file changed

+14
-7
lines changed

delete_operation_for_two_strings/src/lib.rs

+14-7
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,25 @@ pub struct Solution {}
99

1010
impl Solution {
1111
pub fn min_distance(word1: String, word2: String) -> i32 {
12-
let common_length = Self::lcs(&word1, &word2, word1.len(), word2.len());
12+
let mut dp = vec![vec![None; word2.len() + 1]; word1.len() + 1];
13+
let common_length = Self::lcs(&word1, &word2, word1.len(), word2.len(), &mut dp);
1314
(word1.len() + word2.len() - 2 * common_length) as i32
1415
}
1516

16-
pub fn lcs(s1: &str, s2: &str, m: usize, n: usize) -> usize {
17+
fn lcs(s1: &str, s2: &str, m: usize, n: usize, dp: &mut Vec<Vec<Option<usize>>>) -> usize {
1718
// comparing first m characters in s1 and first n characters in s2
18-
if m == 0 || n == 0 {
19+
if let Some(length) = dp[m][n] {
20+
return length;
21+
}
22+
let length = if m == 0 || n == 0 {
1923
0
2024
} else if s1.chars().nth(m - 1) == s2.chars().nth(n - 1) {
21-
1 + Self::lcs(s1, s2, m - 1, n - 1)
25+
1 + Self::lcs(s1, s2, m - 1, n - 1, dp)
2226
} else {
23-
Self::lcs(s1, s2, m - 1, n).max(Self::lcs(s1, s2, m, n - 1))
24-
}
27+
Self::lcs(s1, s2, m - 1, n, dp).max(Self::lcs(s1, s2, m, n - 1, dp))
28+
};
29+
dp[m][n] = Some(length);
30+
length
2531
}
2632
}
2733

@@ -34,8 +40,9 @@ mod test {
3440
let word1 = "sea";
3541
let word2 = "eat";
3642
let expected = 2;
43+
let mut dp = vec![vec![None; word2.len() + 1]; word1.len() + 1];
3744
assert_eq!(
38-
Solution::lcs(word1, word2, word1.len(), word2.len()),
45+
Solution::lcs(word1, word2, word1.len(), word2.len(), &mut dp),
3946
expected
4047
);
4148
}

0 commit comments

Comments
 (0)