CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - LCS算法

搜索资源列表

  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 containers data constitute the
  3. 所属分类:其它

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

    0下载:
  2. 算法实现题 最长公共子序列问题 给定两个序列 X = { x1 , x2 , ... , xm } Y = { y1 , y2 , ... , yn } 求X和Y的一个最长公共子序列 举例 X = { a , b , c , b , d , a , b } Y = { b , d , c , a , b , a } 最长公共子序列为 LSC = { b , c , b , a }
  3. 所属分类:其他智力游戏

    • 发布日期:2008-10-13
    • 文件大小:1.19kb
    • 提供者:sanfy chen
  1. LCS

    0下载:
  2. 使用动态规划方法,实现了最长公共子序列算法,并对动态规划方法作了时间和空间的改进
  3. 所属分类:数据结构常用算法

    • 发布日期:2014-01-19
    • 文件大小:262.82kb
    • 提供者:小波
  1. LCS

    0下载:
  2. KMP算法实现最长公共子序列的C++算法
  3. 所属分类:midi

    • 发布日期:2014-01-20
    • 文件大小:10.85kb
    • 提供者:王鹏程
  1. STLLCS

    0下载:
  2. STL风格LCS算法 STL style LCS algorithm
  3. 所属分类:STL

    • 发布日期:2008-10-13
    • 文件大小:1.59kb
    • 提供者:antss
  1. lcs

    0下载:
  2. 最长公共子序列算法LCS实现。任意输入两个字符串,通过此算法可以找到最长的公共子序列。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1.11kb
    • 提供者:oscarfuture
  1. LCS.rar

    0下载:
  2. 求两个字符串的最长公共子序列,使用递归算法实现。,For two of the longest common sub-string sequences, using the recursive algorithm.
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:7.68kb
    • 提供者:梁海金
  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 the use of b [i, j] to seek a
  3. 所属分类:Algorithm

    • 发布日期:2017-03-23
    • 文件大小:30.09kb
    • 提供者:yan
  1. -p2

    0下载:
  2. 最长公共子序列(LCS),最长递增子序列(LIS),最长公共递增子序列(LCIS)的实现,根据《算法导论》英文版的伪代码改写成C语言版本,测试完美通过。-The longest common sub-sequence (LCS), the longest increasing subsequence (LIS), the longest sequence of public increments (LCIS) of the realization, according to " Intr
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:736.3kb
    • 提供者:无我
  1. LCS-VC60

    0下载:
  2. C语言DTW算法实现,主要功能: 1)快速近邻DTW比较 2)算法稳定 3)节省内存-== Key features == 1) Fast Dynamic Time Warping nearest neighbor cost retrieval. 2) Persistence 3) External-memory: you need only a constant amount of RAM
  3. 所属分类:Speech/Voice recognition/combine

    • 发布日期:2017-03-26
    • 文件大小:150.93kb
    • 提供者:wangxuan
  1. LCS

    0下载:
  2. 最长公共子序列(LCS)算法 求两个字符串的最长公共子序列。 X的一个子序列是相应于X下标序列{1, 2, …, m}的一个子序列,求解两个序列的所有子序列中长度最大的,例如输入:pear, peach输出:pea。 -LCS
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:400.94kb
    • 提供者:夏小军
  1. AlgorithmforLCS

    0下载:
  2. 自己写的,采用VB.NET编写的最长公共子序列(LCS)算法,全图形界面,VS2005下编译通过-Wrote it myself, using VB.NET to prepare the longest common sub-sequence (LCS) algorithm, the entire graphical interface, VS2005 compiler through the next
  3. 所属分类:.net

    • 发布日期:2017-04-25
    • 文件大小:55.48kb
    • 提供者:XIII
  1. LCS

    0下载:
  2. 算法动态规划最长公共子序列的递归实现,并包括查找过程的体现-Dynamic programming algorithm for the longest common subsequence of the recursive implementation, and includes the process to find a manifestation of
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-16
    • 文件大小:120.82kb
    • 提供者:孙强
  1. LCS

    0下载:
  2. LCS算法;即公共串匹配算法; 好了;不说了-LCS algorithm that public string matching algorithm
  3. 所属分类:Special Effects

    • 发布日期:2017-04-10
    • 文件大小:961byte
    • 提供者:nishuo
  1. LCS

    0下载:
  2. 在C++环境下开发的最长公共子序列算法,可以下下来试试看-In C++ development environment, the longest common subsequence algorithm can try the next down
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-29
    • 文件大小:552.36kb
    • 提供者:Nango
  1. lcs

    0下载:
  2. 大二课程算法设计技巧与分析的实验,实现最长公共子序列-Two course design skills and analysis algorithm, the longest public son experiment
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:690byte
    • 提供者:小生
  1. LCS

    0下载:
  2. 利用动态规划算法寻找两个list中的最长公共子序列,并分别记录了最长公共子序列的在list中的结束位置-Dynamic programming algorithm to find the two list the longest common subsequence, and recorded the longest common subsequence of the end position in the list
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:517.37kb
    • 提供者:滕海明
  1. LCS-algorithm

    0下载:
  2. LCS算法结构的描述与说明,使用源代码形式具体描述算法的实现问题-LCS algorithm
  3. 所属分类:Data structs

    • 发布日期:2016-01-26
    • 文件大小:139kb
    • 提供者:
  1. LCS

    0下载:
  2. 计算最长公共子序列,可以用于计算最长公共子序列(dfa s f g as dvd sag as dg)
  3. 所属分类:其他

    • 发布日期:2018-01-01
    • 文件大小:8.87mb
    • 提供者:七秒记忆1
  1. LCS

    0下载:
  2. 用于求解两个串的最长公共子序列,输入两个字符串,从中找到最长的公共子序列。(You can search for the longest common subsequence of two strings,the longesi string is a string that two strings all include.)
  3. 所属分类:其他

    • 发布日期:2018-05-03
    • 文件大小:1.15mb
    • 提供者:Carryliu
« 12 3 4 »
搜珍网 www.dssz.com