CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - LCS

搜索资源列表

  1. lcs

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

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

    0下载:
  2. 本程序计算两个序列的最长公共子序列LCS
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1.05kb
    • 提供者:djz
  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. 最长子序列,问题描述: 随机生成小于等于n的自然数的一个序列,输出其最长递增子序列(任意一个即可)。 n 分别取 1000,3000,10000。 例: n=5 随机序列为 5 1 4 2 3,正确输出为1 2 3,即长度为3的递增子序列。 -lcs
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:180.12kb
    • 提供者:何雯
  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

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

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

    0下载:
  2. 数据结构最长公共子串实现,MFC实现,界面良好-Data structure to achieve the longest common sub-string, MFC realize a good interface
  3. 所属分类:Data structs

    • 发布日期:2017-05-15
    • 文件大小:3.5mb
    • 提供者:
  1. lcs

    0下载:
  2. 一道经典的动态规划题目 浙江大学硕士生入学复试上机题 http://acm.hdu.edu.cn/showproblem.php?pid=1231-Classic dynamic programming http://acm.hdu.edu.cn/showproblem.php?pid=1231
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:550byte
    • 提供者:陈子杭
  1. LCS

    0下载:
  2. LCS问题具有最优子结构和重叠子问题的性质,因此采用动态规划算法自底向上计算该问题的解,并输出求到的LCS。-LCS problem with sub-optimal substructure and overlapping nature of the problem, so a bottom-up dynamic programming algorithm for computing the solution of the problem, and the output request to
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:832byte
    • 提供者:zhdxch
  1. lcs

    0下载:
  2. A program to find the LCS(Longest common subsequence ). It contains a source code the .c file input file .txt and the output file
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1.4kb
    • 提供者:cbeauty
  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

    0下载:
  2. LCS(最长公共子序列)有关算法 详解 -Something about LCS
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:795.58kb
    • 提供者:zcw
  1. LCS

    0下载:
  2.  最长公共子序列也称作最长公共子串(不要求连续),英文缩写为LCS(Longest Common Subsequence)。其定义是,一个序列 S ,如果分别是两个或多个已知序列的子序列,且是所有符合此条件序列中最长的,则 S 称为已知序列的最长公共子序列-Longest common subsequence, also known as the longest common strings (does not require continuous), the English abbreviat
  3. 所属分类:Data structs

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

    0下载:
  2. LCS 动态归划解决char 类型的最长字符串的匹配问题-LCS program to solve dynamic return type char longest matching string
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:91.78kb
    • 提供者:gle
  1. LCS

    0下载:
  2. lcs 源码,求出所有的最长公共子序列!不足之处请大家指点@-lcs source, find the longest common subsequence of all! Inadequate guidance please!
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:3.78kb
    • 提供者:史跃珍
  1. LCS

    0下载:
  2. 经典算法lcs的实现代码,采用的是c++,在vc6.0上编译的,附带有实验报告。-The realization of the classical algorithm LCS code, the are c++, compiled in vc6.0, accompanied by experiment report.
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:29.54kb
    • 提供者:李玉明
  1. LCS-algorithm

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

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

    0下载:
  2. 设计一个算法来求出两个子序列的全部的LCS-Design an algorithm to find all LCS
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:605.4kb
    • 提供者:朱月恒
  1. Find-LCS

    0下载:
  2. 设计一个程序求出两个子序列的最长公共子序列-Design an algorithm to find all LCS
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:605.47kb
    • 提供者:朱月恒
« 12 3 4 »
搜珍网 www.dssz.com