CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - 最长公共子序列问题

搜索资源列表

  1. E10514043

    0下载:
  2. 应用算法设计与分析知识,查找出最长公共子序列问题
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:16191
    • 提供者:放飞
  1. code

    0下载:
  2. 王晓东 算法设计 课后部分答案 n后 , 编辑距离问题 , 标准2维表问题 ,独立任务最优调度 , 会场安排 , 矩阵相乘 , 圈乘运算 , 输油管道问题 , 兔子生崽 , 邮局选址 , 又重复元素排列问题 , 找第二名学生成绩 , 众数问题 , 字典序问题 , 租用游艇问题 , 最长公共子序列问题 ,最大k乘积 , 最大长方体 , 最少硬币 , 最小费用购物, 最优合并-Algorithm acm C++
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:12348
    • 提供者:leyuan
  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问题就是求两个字符串最长公共子串的问题。解法就是用一个矩阵来记录两个字符串中所有位置的两个字符之间的匹配情况,若是匹配则为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. zuichangg1

    0下载:
  2. 算法分析的最长公共子序列问题 求出其中的最优解 可在c++环境中做-Algorithm analysis of the longest common subsequence problem find the optimal solution which can be done in c++ environment
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:570
    • 提供者:xiaolu
  1. xulie

    0下载:
  2. 利用动态规划法求解次最长公共子序列问题。-The use of dynamic programming method for solving second longest common subsequence problem.
  3. 所属分类:Other systems

    • 发布日期:2017-04-09
    • 文件大小:1056944
    • 提供者:hehuiling
  1. resoures

    0下载:
  2. “最长公共子序列问题”的三种重要实现方法,源代码-" Longest common subsequence problem" to achieve three important ways, the source code! ! ! !
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:3481
    • 提供者:王伟
  1. LCS

    0下载:
  2. 算法设计与分析课程中用动态规划算法求解最长公共子序列问题,C语言写的,很实用,有b数组和c数组的输出,很适合初学者一步一步走程序。-Algorithm design and analysis programs using dynamic programming algorithm for solving the longest common subsequence problem, C language written, very practical, with b and c array ar
  3. 所属分类:Other systems

    • 发布日期:2017-04-06
    • 文件大小:734
    • 提供者:陈丽萍
  1. 111

    0下载:
  2. 最长公共子序列算法试验报告, 1.掌握动态规划算法的基本概念和两个基本要素。 2.熟练掌握动态规划算法解决问题的基本步骤。 3.学会利用动态规划算法解决实际问题。 -Longest common subsequence algorithm test report, 1. Grasp the basic concepts of dynamic programming algorithm and two basic elements. 2. Master the dynamic pr
  3. 所属分类:Other systems

    • 发布日期:2017-04-08
    • 文件大小:5900
    • 提供者:谢锦
  1. zuichanggonggongzixulie

    0下载:
  2. 算法 最长公共子序列问题实现 很简单的 大家可以下载研究下-Algorithm to achieve the longest common subsequence problem is very simple you can download under study
  3. 所属分类:Other systems

    • 发布日期:2017-04-01
    • 文件大小:853726
    • 提供者:林常来
  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. CommonOrder

    0下载:
  2. 最长公共子序列问题的一个小程序,数据在代码里面-The longest public subsequence of a small program
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-01
    • 文件大小:535
    • 提供者:maike
  1. algorithm

    0下载:
  2. 1.Dijkstra算法设计分析,2.布线问题分析设计.3最长公共子序列 4.N后问题(回溯法) -1.Dijkstra algorithm design and analysis, wiring problem analysis and design .3 longest common subsequence 4.N problem (backtracking)
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-03
    • 文件大小:3286
    • 提供者:Deep
  1. The-longest-common-subsequence-

    0下载:
  2. 最长公共子序列问题 第一步 最优子结构: 第二步:建立递归式 第三步:计算最优值 -The longest common subsequence problem
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-09
    • 文件大小:1967
    • 提供者:周能
  1. LCS_Dynamic-planning

    0下载:
  2. 动态规划应用 动态规划算法解最长公共子序列LCS问题-Dynamic programming dynamic programming algorithm for solving the longest common subsequence LCS problem
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:1565
    • 提供者:安静风
  1. My_LCS

    0下载:
  2. 最长公共子序列 算法分析之动态规划 动态规划解决最长公共子序列问题,即寻找两个序列中公共的序列中的最长的那个,结果不唯一,只能输出一个最长公共子序列,并不能生成所有的; 可视化多文档,手动输入两个子序列,显示动态规划算法的解决表格,箭头和颜色显示公共字符和解路径; C++6.0- Longest common subsequence algorithm for analysis of dynamic programming dynamic programming to solve the
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-13
    • 文件大小:2822895
    • 提供者:忘了
  1. lcslength

    0下载:
  2. 最长公共子序列问题 源代码。Java实现源码-Longest common subsequence problem source of the problem. Java implementation source code
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:768
    • 提供者:杜杜
搜珍网 www.dssz.com