题解 | #最长公共子串#

最长公共子串

https://www.nowcoder.com/practice/f33f5adc55f444baa0e0ca87ad8a6aac

最长公共子序列的简化版本,字串要求必须连续。

#include <utility>
#include <vector>
class Solution {
  public:
    string LCS(string str1, string str2) {
        int len1 = str1.size(), len2 = str2.size();
        vector<vector<int>> dp(len1, vector<int>(len2, 0));
        int maxlen = 0;
        pair<int, int> maxindex;
        for (int i = 0; i < len1; i++) {
            for (int j = 0; j < len2; j++) {
                if (str1[i] == str2[j]) {
                    dp[i][j] = i * j ? dp[i - 1][j - 1] + 1 : 1;
                    if (dp[i][j] > maxlen) {
                        maxlen = dp[i][j];
                        maxindex = {i, j};
                    }
                }
            }
        }
        string res("");
        for (int k = maxindex.first, c = maxlen - 1; c >= 0;
                k--, c--) {
            res.insert(0, 1, str1[k]);
        }
        return res;
    }
};

全部评论

相关推荐

不愿透露姓名的神秘牛友
11-21 17:16
科大讯飞 算法工程师 28.0k*14.0, 百分之三十是绩效,惯例只发0.9
点赞 评论 收藏
分享
点赞 评论 收藏
分享
10-05 11:11
海南大学 Java
投票
理想江南137:感觉挺真诚的 感觉可以试一试
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务