CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - 最长公共子序列问题

搜索资源列表

  1. LCS_Dynamic_Programming

    0下载:
  2. LCS(最长公共子序列)问题可以简单地描述如下: 一个给定序列的子序列是在该序列中删去若干元素后得到的序列。给定两个序列X和Y,当另一序列Z既是X的子序列又是Y的子序列时,称Z是序列X和Y的公共子序列。例如,若X={A,B,C,B,D,B,A},Y={B,D,C,A,B,A},则序列{B,C,A}是X和Y的一个公共子序列,但它不是X和Y的一个最长公共子序列。序列{B,C,B,A}也是X和Y的一个公共子序列,它的长度为4,而且它是X和Y的一个最长公共子序列,因为X和Y没有长度大于4的公共子序列
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:4737
    • 提供者:汤烈
  1. LongestCommonSequenceLENGTH

    0下载:
  2. 该程序为算法分析中的一个经典问题,可以通过此程序,用动态规划的算法找出两个字符序列的最长公共子序列-procedures for the analysis of algorithms a classic problem, through this procedure, use dynamic programming algorithm to find two characters of the longest sequence of public sequences
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:42208
    • 提供者:阳林
  1. 3.2

    0下载:
  2. 作品:算法设计课程作业 作者:陈兴 学号:J04120010 操作说明: 1、最长公共子序列: 用VC6.0打开文件以后输入一串数字,按“\\”为结束,输出结果。 2、背包问题 用vc6.0打开文件以后按提示操作。 3、残缺棋盘问题 用vc6.0打开文件以后按提示操作。 4、(3.1和3.2还有3.3) 这个是课本82页的作业,基本实现了。其中3.2的算法时间复杂度不是nlogn而是n,nlogn的算法没做出来! -e
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:809
    • 提供者:陈兴
  1. ZuiChangGongGongZiXuLie

    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. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:7982
    • 提供者:陈文浩
  1. liubo77_0257

    0下载:
  2. 最长公共子序列的实现问题简单快速会让你与一项不到到结果
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:11631
    • 提供者:申顺心
  1. report+of+Algorithm

    0下载:
  2. 算法设计的实验报告 包括Bottom-Up Merge Sorting算法、插入排序算法Heaps的创建堆、堆排序算法、按秩合并算法以及带路径压缩算法、实现查找第K小元素算法、实现快速排序算法、实现平面内最接近点对算法、实现最长公共子序列算法、实现矩阵链相乘算法、实现0/1背包问题算法、实现Dijistra’s算法、Prim算法、Kruskal算法、文件压缩算法-Experimental Algorithm Design Report including Bottom-Up Merge So
  3. 所属分类:Data structs

    • 发布日期:2017-03-22
    • 文件大小:28952
    • 提供者:苏宁
  1. ac

    0下载:
  2. 最长公共子序列 问题ACM题目 如果序列 { s1, s2, ……, sk } 是序列 { a1, a2, ……, an } 的子序列,又是序列 { b1, b2, ……, bm } 的子序列,则称序列 s 为序列 a 和 序列 b 的公共子序列。在 a 和 b 的所有公共子序列中,长度最长者称为最长公共子序列。 本题对于给定的两个整数序列,请求其最长公共子序列的长度 -The question of the longest common sub-sequence if th
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:5027
    • 提供者:霍小明
  1. LCSDP

    0下载:
  2. 最长公共子序列问题的动态规划算法,vc实现。-The longest common sub-sequence dynamic programming algorithm for the problem, vc achieve.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-05
    • 文件大小:1167
    • 提供者:付娆
  1. zuichanggonggong

    0下载:
  2. 最长公共子序列问题的算法实现,可以运行,希望可以帮到大家-The longest common sub-sequence algorithm problem, you can run, I hope you can help
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:61876
    • 提供者:yang
  1. LCS68765873568

    0下载:
  2. 求解序列的最长公共子序列问题,使用滚动数组的方法-Solve the sequence of the longest common subsequence problem, use the scroll method for array
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:1167
    • 提供者:李延明
  1. 3.1

    0下载:
  2. 最长公共子序列问题 最长公共子序列(动态规划) 实验数据:input.txt X={A,B,C,B,D,A,B} Y={B,D,C,A,B,A} ——要求给出X、Y的最长公共子序列Z,程序运行结束时,将计算结果输出到文件output.txt中。输出文件中包含问题的答案:找不到公共子序列时给出“null” 。 -Longest common subsequence problem LCS (dynamic programming) experimental data:
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:101098
    • 提供者:陈星风
  1. LCS

    0下载:
  2. 最长公共子序列问题求解
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:197088
    • 提供者:wangh
  1. LCS_Ex

    0下载:
  2. 最长公共子序列问题求解,采用动态规划的算法,对两个字符串进行求解最长公共子序列。-Longest common subsequence problem solving, using dynamic programming algorithm to solve the two string longest common subsequence.
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:184260
    • 提供者:王盛
  1. 123

    0下载:
  2. 一、最长公共子序列问题;二,最大子段和问题(分治算法)-First, the longest common subsequence problem Longest common subsequence problems longest common subsequence problem Longest common subsequence problem
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:92743
    • 提供者:王海颖081
  1. 3

    0下载:
  2. 3.1 最长公共子序列问题 最长公共子序列(动态规划) 实验数据:input.txt X={A,B,C,B,D,A,B} Y={B,D,C,A,B,A} ——要求给出X、Y的最长公共子序列Z,程序运行结束时,将计算结果输出到文件output.txt中。输出文件中包含问题的答案:找不到公共子序列时给出“null” 。-3.1 the longest common subsequence problems longest common subsequence (dynamic
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:806
    • 提供者:杨蔚
  1. 3

    0下载:
  2. 3.1 最长公共子序列问题 最长公共子序列(动态规划) 实验数据:input.txt X={A,B,C,B,D,A,B} Y={B,D,C,A,B,A} ——要求给出X、Y的最长公共子序列Z,程序运行结束时,将计算结果输出到文件output.txt中。输出文件中包含问题的答案:找不到公共子序列时给出“null” 。 -3.1 the longest common subsequence problems longest common subsequence (dynam
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:687
    • 提供者:杨蔚
  1. The--longest-common-subsequence

    1下载:
  2. 本代码是算法设计中的最长公共子序列问题,通过C++编写。-This code is the longest common subsequence algorithm design, written by C++.
  3. 所属分类:Data structs

    • 发布日期:2016-11-27
    • 文件大小:1024
    • 提供者:随波
  1. The-longest-common-subsequence

    0下载:
  2. 运用动态规划思想和策略,解决最长公共子序列问题。-The use of dynamic programming ideas and strategies to solve the longest common subsequence problem.
  3. 所属分类:Data structs

    • 发布日期:2017-11-12
    • 文件大小:770
    • 提供者:吕子乔
  1. Lcs

    0下载:
  2. 求最长公共子序列。本算法使用动态规划算法,解得最长公共子序列问题。-Find the longest common subsequence. The algorithm uses a dynamic programming algorithm, the solution was the longest common subsequence problem.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:713
    • 提供者:wutong
  1. Longest common subsequence

    0下载:
  2. 用动态规划思想设计实现最长公共子序列问题,用贪心思想设计实现活动安排问题,并且用不同数据量进行对比分析。(We use dynamic programming theory to design the longest common subsequence problem. We use greedy thought to design the activity scheduling problem, and compare it with different data volume.)
  3. 所属分类:数据结构

    • 发布日期:2018-04-30
    • 文件大小:1024
    • 提供者:lcy2074
« 12 »
搜珍网 www.dssz.com