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);
}
};