题解 | #最长公共子串#
最长公共子串
http://www.nowcoder.com/practice/f33f5adc55f444baa0e0ca87ad8a6aac
尽可能地优雅!
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 len1 = str1.size(), len2 = str2.size(); int dp[len1+1][len2+1], max = 0, tagi = 0; for(int i = 0; i < len1 + 1; i++) dp[i][0] = 0; for(int j = 0; j < len2 + 1; j++) dp[0][j] = 0; for(int i = 1; i <= len1; i++){ for(int j = 1; j <= len2; j++){ if(str1[i-1] == str2[j-1]) dp[i][j] = dp[i-1][j-1] + 1; else dp[i][j] = 0; if(max < dp[i][j]){ max = dp[i][j]; tagi = i; } } } string ans(str1.begin() + tagi - max, str1.begin() + tagi); return ans; } };