【打卡】牛客网:BM66 最长公共子串

发布时间:2023年12月20日

资料:

string.substr(index, length);

index是复制的开始位置,length是复制的长度。

模板的:

比最长公共子序列简单。

class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * longest common substring
     * @param str1 string字符串 the string
     * @param str2 string字符串 the string
     * @return string字符串
     */
    string LCS(string str1, string str2) {
        // write code here
        int n = str1.length();
        int m = str2.length();
        vector<vector<int>> dp(n+1,vector<int> (m+1));
        int mmax = 0;
        int ppos = 0;
        for(int i = 1; i <= n; i++){
            for(int j = 1; j <= m; j++){
                if(str1[i-1] == str2[j-1]){
                    dp[i][j] = dp[i-1][j-1] + 1;
                }
                if(dp[i][j]>mmax){
                    mmax = dp[i][j];
                    ppos = i-1;
                }
            }
        }
        return str1.substr(ppos-mmax+1,mmax);
    }
};

文章来源:https://blog.csdn.net/weixin_47173826/article/details/135117728
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。