摘要: 输出所有的最长公共子序列 #include #include #include using namespace std;string X = "ABCBDAB";string Y = "BDCABA";vector> table; // 动态规划表set setOfLCS; //... 阅读全文
posted @ 2014-11-29 15:41 songlee 阅读(1199) 评论(0) 推荐(0)