1143. Longest Common Subsequence (Solution 3)

复制代码
/**
 * 1143. Longest Common Subsequence
 * https://leetcode.com/problems/longest-common-subsequence/description/
 *
 * Given two strings text1 and text2, return the length of their longest common subsequence.
A subsequence of a string is a new string generated from the original string with some characters(can be none) deleted without changing the relative order of the remaining characters.
(eg, "ace" is a subsequence of "abcde" while "aec" is not). A common subsequence of two strings is a subsequence that is common to both strings.
If there is no common subsequence, return 0.

Example 1:
Input: text1 = "abcde", text2 = "ace"
Output: 3
Explanation: The longest common subsequence is "ace" and its length is 3.

Constraints:
1 <= text1.length <= 1000
1 <= text2.length <= 1000
The input strings consist of lowercase English characters only.
 * */
class Solution {
    fun longestCommonSubsequence(text1: String, text2: String): Int {
       val dp = Array(m + 1) { IntArray(n + 1) { -1 } }
        return dp2(text1, text2, m, n, dp)
    }
    
   /*
    * solution 2: DP: Memorization, Top-Down; Time complexity(mn), Space complexity:O(mn)
    * */
    private fun dp2(str1: String, str2: String, m: Int, n: Int, dp: Array<IntArray>): Int {
        if (m == 0 || n == 0) {
            return 0
        }
        if (dp[m][n] >= 0) {
            return dp[m][n]
        }
        var ans = 0
        if (str1[m - 1] == str2[n - 1]) {
            ans = 1 + dp2(str1, str2, m - 1, n - 1, dp)
        } else {
            ans = Math.max(dp2(str1, str2, m - 1, n, dp), dp2(str1, str2, m, n - 1, dp))
        }
        dp[m][n] = ans
        return ans
    }
}
复制代码

 

posted @   johnny_zhao  阅读(132)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· .NET10 - 预览版1新功能体验(一)
点击右上角即可分享
微信分享提示