摘要: int LCS(string str1, string str2) //返回最长公共字串长度{ //创建矩阵 int** martix; martix = new int*[str1.length()+1]; for(int i =0; imax) {... 阅读全文
posted @ 2014-08-30 16:09 Will Lau 阅读(277) 评论(0) 推荐(0)