CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - 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
    • 文件大小:1588
    • 提供者:王硕
  1. lcs

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

    • 发布日期:2008-10-13
    • 文件大小:1489
    • 提供者:鲁剑锋
  1. lcs

    0下载:
  2. CommunicatorWebAccess全套开发部署文档.-CommunicatorWebAccess the development and deployment of a full set of documentation.
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-11
    • 文件大小:2212979
    • 提供者:wanglei
  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 Develop

    • 发布日期:2017-03-28
    • 文件大小:6280
    • 提供者:王志刚
  1. LCS

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

    • 发布日期:2017-04-03
    • 文件大小:1167
    • 提供者: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. The LCS must contain am, we h
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:1242
    • 提供者: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 to record the location of two
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:159122
    • 提供者:郭子
  1. lcs

    0下载:
  2. Longest Common Subsequence Problem. Solution both Iterative and Recursive.
  3. 所属分类:ActiveX-DCOM-ATL

    • 发布日期:2017-03-29
    • 文件大小:835
    • 提供者:gowdd
  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
    • 文件大小:56811
    • 提供者:XIII
  1. project1

    0下载:
  2. Constrained LCS. Given two sequences X, Y and a constrained sequence P, a sequence Z is a constrained longest common subsequence for X and Y with respect to P if Z is the longest subsequence of X and Y such that P is a subsequence of Z.
  3. 所属分类:ActiveX-DCOM-ATL

    • 发布日期:2017-03-29
    • 文件大小:6815
    • 提供者:Austin
  1. LCS_src

    0下载:
  2. Longest Common Substring LCS
  3. 所属分类:CSharp

    • 发布日期:2017-03-31
    • 文件大小:8419
    • 提供者:Lugano
  1. LCS

    0下载:
  2. Longest common subsequence problem. It is dynamic approach based problem.
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:549
    • 提供者:Preeti
  1. LCS

    0下载:
  2. lcs 最大公共字串 最大公共字串-lcs 最大公共字串 最大公共字串 最大公共字串
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:788018
    • 提供者:jinsong
  1. LCS

    0下载:
  2. 利用动态规划技术和递推的办法,求出两个字母表A和B的最大公共字串长度。-The use of dynamic programming techniques and recursive approach to find the two alphabets A and B, the largest public string length.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:963218
    • 提供者:孙静
  1. LCS.tar

    0下载:
  2. LCS匹配算法,divide and conquer LCS-LCS matching algorithms, divide and conquer LCS
  3. 所属分类:Other systems

    • 发布日期:2017-04-24
    • 文件大小:20480
    • 提供者:刘研
  1. LCS

    0下载:
  2. 最长公共字串,寻找两个字符串的最长公共字串。-LCS
  3. 所属分类:Console

    • 发布日期:2017-03-31
    • 文件大小:552
    • 提供者:jinyu
  1. LCS

    0下载:
  2. 最长公共子序列问题描述与实验目的: 序列Z=<B,C,D,B>是序列X=<A,B,C,B,D,A,B>的子序列,相应的递增下标序列为<2,3,5,7>。 一般地,给定一个序列X=<x1,x2,…,xm>,则另一个序列Z=<z1,z2,…,zk>是X的子序列,是指存在一个严格递增的下标序列〈i1,i2,…,ik〉使得对于所有j=1,2,…,k使Z中第j个元素zj与X中第ij个元素相同。 给定2个序列X和Y,当另一序列Z既是X
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:872324
    • 提供者:wscnwps
  1. lcs

    0下载:
  2. lcs用来求两个字符串的最长公共子串。 -lcs of two strings to find the longest common string.
  3. 所属分类:Other systems

    • 发布日期:2017-05-04
    • 文件大小:1188510
    • 提供者:赵莉
  1. LCS-program

    0下载:
  2. 求最长公共子序列Seeking the longest common subsequence-Seeking the longest common subsequence LCS program
  3. 所属分类:CSharp

    • 发布日期:2017-11-15
    • 文件大小:1688803
    • 提供者:yuanwenlong
  1. lcs

    0下载:
  2. 利用lcs进行的两个字符串的最长公共子序列查找。-Longest common subsequence Find the use of two strings lcs.
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-14
    • 文件大小:322076
    • 提供者:李嘉锋
« 12 3 »
搜珍网 www.dssz.com