题解 | #最长公共子串#

最长公共子串

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

#include <vector>
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
        vector<vector<int>> dp(str1.length() + 1, vector<int>(str2.length() + 1, 0));
        int length = 0;
        int pos = 0;
        for(int i = 0; i < str1.length(); i++){
            for(int j = 0; j <str2.length(); j++){
                if(str1[i] == str2[j]){
                    dp[i + 1][j + 1] = dp[i][j] + 1;
                }else{
                    dp[i][j] = 0;
                }
                if(dp[i + 1][j + 1] > length){
                    length = dp[i + 1][j + 1];
                    pos = i;
                }
            }
        }
        return str1.substr(pos - length + 1, length);
    }
};

C++动态规划方法解最长公共子串

全部评论

相关推荐

不愿透露姓名的神秘牛友
09-10 15:43
不想上班蚊不叮在走神:华子是这样的。我投递了,还有其他华子内部人加我,不知道从哪搞的微信号,还要给我打电话劝我改投递方向。直接不鸟就行了
点赞 评论 收藏
分享
去B座二楼砸水泥地:不过也可以理解,这种应该没参加过秋招
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务