LCS

所属分类:数学计算
开发工具:C/C++
文件大小:155KB
下载次数:19
上传日期:2009-04-04 09:56:03
上 传 者郭子123456
说明:  LCS问题就是求两个字符串最长公共子串的问题。解法就是用一个矩阵来记录两个字符串中所有位置的两个字符之间的匹配情况,若是匹配则为1,否则为0。然后求出对角线最长的1序列,其对应的位置就是最长匹配子串的位置。 最长递增子序列LCS的实现C源码!
(LCS problem for two strings is the longest common sub-string problem. Solution is to use a matrix to record the location of two strings of all the matches between the two characters in the situation, if the match is one, otherwise to 0. And one of the longest diagonal obtained sequence, the location of its corresponding sub-string match is the longest position. The longest increasing sub-sequence source C implementation of the LCS!)

文件列表:
最长递增子序列LCS的实现C源码\lcs.c (2471, 2008-12-01)
最长递增子序列LCS的实现C源码\LCS.dsp (4360, 2008-12-01)
最长递增子序列LCS的实现C源码\LCS.dsw (529, 2008-12-01)
最长递增子序列LCS的实现C源码\lcs.h (465, 2008-12-01)
最长递增子序列LCS的实现C源码\LCS.ncb (50176, 2008-12-02)
最长递增子序列LCS的实现C源码\LCS.opt (53760, 2008-12-02)
最长递增子序列LCS的实现C源码\LCS.plg (629, 2008-12-02)
最长递增子序列LCS的实现C源码\lcsMain.c (1759, 2008-12-01)
最长递增子序列LCS的实现C源码\Debug\LCS.exe (172083, 2008-12-02)
最长递增子序列LCS的实现C源码\Debug\LCS.ilk (229968, 2008-12-02)
最长递增子序列LCS的实现C源码\Debug\lcs.obj (7227, 2008-12-02)
最长递增子序列LCS的实现C源码\Debug\LCS.pdb (459776, 2008-12-02)
最长递增子序列LCS的实现C源码\Debug\lcsMain.obj (8564, 2008-12-01)
最长递增子序列LCS的实现C源码\Debug\vc60.idb (33792, 2008-12-02)
最长递增子序列LCS的实现C源码\Debug\vc60.pdb (53248, 2008-12-02)
最长递增子序列LCS的实现C源码\Debug (0, 2009-04-03)
最长递增子序列LCS的实现C源码 (0, 2009-04-03)

近期下载者

相关文件


收藏者