水题。求最长公共子串。典型的动态规划题。不过还是有注意的地方,比如数组下标为负的处理。我用的是加判断特殊处理,也见到多存一行(一列)的方法。
刚开始用cin.eof()结果一直WA,按照poj discuss里面讨论的cin>>str1>>str2的方法过了。还没弄清这两者的区别。
#include <iostream>
#include <string>
using namespace std;
const int N = 201;
int len[N][N];
int commonseq(const string &str1, const string &str2)
{
/*
for(int i = 0; i < str2.size(); ++i)
{
len[0][i] = (str1[0] == str2[i])? 1 : 0;
}
for(int i = 0; i < str1.size(); ++i)
{
len[i][0] = (str1[i] == str2[0])? 1 : 0;
}
*/
for(int i = 0; i < str1.size(); ++i)
{
for(int j = 0; j < str2.size(); ++j)
{
if(str1[i] == str2[j])
{
if(i - 1 < 0 || j - 1 < 0)
{
len[i][j] = 1;
}
else
{
len[i][j] = len[i - 1][j - 1] + 1;
}
}
else
{
if(i - 1 < 0)
{
len[i][j] = len[i][j - 1];
}
else if(j - 1 < 0)
{
len[i][j] = len[i - 1][j];
}
else
{
len[i][j] = max(len[i - 1][j], len[i][j - 1]);
}
}
}
}
return len[str1.size() - 1][str2.size() - 1];
}
int main()
{
string str1, str2;
while(cin>>str1>>str2)
{
//cin>>str1>>str2;
cout<<commonseq(str1, str2)<<endl;
}
return 0;
}