/** * @brief longest common subsequence(LCS) * @author An * @data 2013.8.26 **/ #include <iostream> #include <string> using namespace std; enum Direction { Zero, LeftUp, Up, Left }; static int m; // length of the first sequence static int n; /…
一.最长公共子序列问题(LCS问题) 给定两个字符串A和B,长度分别为m和n,要求找出它们最长的公共子序列,并返回其长度.例如: A = "HelloWorld" B = "loop" 则A与B的最长公共子序列为 "loo",返回的长度为3.此处只给出动态规划的解法:定义子问题dp[i][j]为字符串A的第一个字符到第 i 个字符串和字符串B的第一个字符到第 j 个字符的最长公共子序列,如A为“app”,B为“apple”,dp[2][3]…