LintCode问题图解-45
2017-11-20 本文已影响1人
billliu_0d62
本文准备讲解1个算法编程问题, 这个算法编程问题来自LintCode平台。不了解.LintCode平台的读者可以阅读笔者文章(在线编程平台推荐-LeetCode)。问题的英文版本描述如下:
Longest Common Subsequence
Example
For "ABCD" and "EDCA", the LCS is "A" (or "D","C"), return 1.
For "ABCD" and "EACB", the LCS is "AC", return 2.
Longest Common Subsequence 为1个经典问题,也非常重要。介绍1种高效的算法。算法的说明 ( http://www.algorithmist.com ):
算法的说明 高效的算法