搜索资源列表

  1. stl.LCS

    0下载:
  2. 参考算法导论写的LCS算法,仿照STL的泛型风格,适用于多种STL容器中的各种类型数据构成的序列的最大公共子序列(Longest Common Subsequence)问题求解。-reference Introduction to write the algorithm LCS algorithm, modeled on the STL Generic style. STL is applicable to many types of
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1588
    • 提供者:王硕
  1. LCS

    0下载:
  2. 动态规划解决LCS-dynamic programming solution LCS
  3. 所属分类:中文信息处理

    • 发布日期:2008-10-13
    • 文件大小:1566
    • 提供者:胡凯
  1. LCS

    1下载:
  2. LCS Algorithm以c#來實作,對於在學習algorithm的人們可以用這個程式來demo看看,是以VS2005開發。
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:13363
    • 提供者:劉逸
  1. LCS

    0下载:
  2. 动态规划解决LCS-dynamic programming solution LCS
  3. 所属分类:中文信息处理

    • 发布日期:2024-05-05
    • 文件大小:1024
    • 提供者:胡凯
  1. stl.LCS

    0下载:
  2. 参考算法导论写的LCS算法,仿照STL的泛型风格,适用于多种STL容器中的各种类型数据构成的序列的最大公共子序列(Longest Common Subsequence)问题求解。-reference Introduction to write the algorithm LCS algorithm, modeled on the STL Generic style. STL is applicable to many types of
  3. 所属分类:其他小程序

    • 发布日期:2024-05-05
    • 文件大小:1024
    • 提供者:王硕
  1. LCS

    0下载:
  2. LCS Algorithm以c#來實作,對於在學習algorithm的人們可以用這個程式來demo看看,是以VS2005開發。-LCS Algorithm to c# To implement, for the people in the learning algorithm can use this program to look at the demo is based on VS2005 development.
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-05
    • 文件大小:33792
    • 提供者:劉逸
  1. LCS(c++)

    0下载:
  2. LCS Algorithm, this is a c++ code for lcs(Longest Common Subsequence)
  3. 所属分类:软件工程

    • 发布日期:2024-05-05
    • 文件大小:8192
    • 提供者:劉逸
  1. lcs

    0下载:
  2. lcs码系统仿真,matlab7.0编译通过,通过仿真可以了解不同参数下,信号衰耗程度-lcs Code System Simulation, matlab7.0 compiler is passed, through the simulation can understand the different parameters, the degree of signal attenuation
  3. 所属分类:邮电通讯系统

    • 发布日期:2024-05-05
    • 文件大小:1024
    • 提供者:李好
  1. lcs

    0下载:
  2. 最长公共子序列算法LCS实现。任意输入两个字符串,通过此算法可以找到最长的公共子序列。-The longest common sub-sequence algorithm LCS realize. Arbitrary input two strings, this algorithm can find the longest common sub-sequence.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-05
    • 文件大小:1024
    • 提供者:oscarfuture
  1. lcs

    0下载:
  2. 本程序计算两个序列的最长公共子序列LCS-This procedure calculated the two longest sequences in public sequence LCS
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-05
    • 文件大小:1024
    • 提供者:djz
  1. lcs(continue)

    0下载:
  2. LCS,即最常公共子序列的的C语言解法。prepare_for_backdate(char,char,int,int)函数是为后面的回溯法求得最长公共子序列做准备,并可得到子序列长度。lcs(char,int,int)函数是输出子序列的。并用到了第一个函数的结果。因为要得到最终的子序列,要知道那些地方是可输出的位置,因此构造数组b[][],当为1时表明当前位置匹配,可输出,为2时需要往上回溯,为3时需要往左回溯,直到找到下一个为1的位置
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-05
    • 文件大小:1054720
    • 提供者:向冬冬
  1. lcs

    0下载:
  2. LCS Longest (maximum) common subsequence -LCS Longest (maximum) common subsequence
  3. 所属分类:ActiveX/DCOM

    • 发布日期:2024-05-05
    • 文件大小:1024
    • 提供者:鲁剑锋
  1. lcs

    0下载:
  2. 动态规划实现lcs-Dynamic programming to achieve lcs
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-05
    • 文件大小:879616
    • 提供者:hcsg
  1. LCS

    0下载:
  2. 这是运用C++语言实现的有关最长公共子序列LCS问题的详细求解代码,大家可以下载看看,谢谢!-This is the use of C++ Language of the longest common sub-sequence of LCS to solve the problem in detail code, you can download and see, thank you!
  3. 所属分类:Windows编程

    • 发布日期:2024-05-05
    • 文件大小:549888
    • 提供者:王志刚
  1. LCS

    0下载:
  2. LCS 是一個能從輸入兩串字串當中找出最長的由左而右的順序的字元-LCS is a string which can enter the two strings to find the longest sequence of characters由左而右
  3. 所属分类:其他小程序

    • 发布日期:2024-05-05
    • 文件大小:1024
    • 提供者:linru
  1. LCS

    0下载:
  2. Instead of finding the longest common subsequence, let us try to determine the length of the LCS. 􀂄 Then tracking back to find the LCS. 􀂄 Consider a1a2…am and b1b2…bn. 􀂄 Case 1: am=bn. T
  3. 所属分类:其他小程序

    • 发布日期:2024-05-05
    • 文件大小:1024
    • 提供者:linru
  1. LCS

    0下载:
  2. LCS问题就是求两个字符串最长公共子串的问题。解法就是用一个矩阵来记录两个字符串中所有位置的两个字符之间的匹配情况,若是匹配则为1,否则为0。然后求出对角线最长的1序列,其对应的位置就是最长匹配子串的位置。 最长递增子序列LCS的实现C源码!-LCS problem for two strings is the longest common sub-string problem. Solution is to use a matrix
  3. 所属分类:其他小程序

    • 发布日期:2024-05-05
    • 文件大小:158720
    • 提供者:郭子
  1. LCS

    1下载:
  2. 用LCS方法解决字符匹配问题,用到动态规划的思想。原创-LCS solution with matching characters, the idea of using dynamic programming
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-05
    • 文件大小:1024
    • 提供者:bohu
  1. lcs

    0下载:
  2. 一个java实现的lcs最长公共自序列的程序实现,完整代码,可以直接运行,环境eclipse 欢迎下载,交流学习-Lcs a java achieved the longest sequence of procedures in public since the realization of a complete code, can be directly run, the environment welcomed the ecl
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-05
    • 文件大小:3072
    • 提供者:liu
  1. LCS

    0下载:
  2. 算法:(用c++编写)设计一个算法求出全部的LCS,分析最坏情况。用”会计方法”证明,利用b[i,j]来求所有LCS的算法(在VS2008平台上) -Algorithm: (written with c++) design an algorithm find all of the LCS, the worst-case analysis. With the " accounting method" to prove
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-05
    • 文件大小:30720
    • 提供者:yan
« 12 3 4 5 6 7 8 9 10 »

源码中国 www.ymcn.org