CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 最大 子序列

搜索资源列表

  1. main3

    0下载:
  2. 使用c++,依据动态规划思路,解决在一个数组中,找到和最大的子序列-Using c++, based on dynamic programming ideas to solve in an array to find and the largest sub-sequence of
  3. 所属分类:Other systems

    • 发布日期:2017-04-02
    • 文件大小:172059
    • 提供者:丁欢
  1. lcs

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

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

    0下载:
  2. 一串数字序列比如1,3,4,5,7,6……得到其中的最带不连续子序列(要求序列是严格递增的如1,3,4,5,7可以,5,7,6就不可以) 本代码即,最大不连续子序列问题,属于经典的动态规划问题适合初学者-A string of number sequences such as 1,3,4,5,7,6 ... ... be one of the best sequence with discontinuous (which requires a strictly increasing sequ
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:717
    • 提供者:
  1. most-common-subsequence-string

    0下载:
  2. 算法设计类源码。使用动态规划的方式计算两个字符串的最大公共子序列。-Algorithm design class source code. Calculated using dynamic programming the two most common subsequence string.
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1792
    • 提供者:lixu
  1. shuangduandui

    0下载:
  2. 双端队列应用于优化算法,解决竞赛题:由题目所说,Mr Pote有n个袋子装豆子。Mr Pote从中进行挑选包装,要求找出连续一列袋子,使得它们的豆子总和s在满足s p<=k条件下最大 ,以保证被狗狗吃掉的最少,并且Mr .Pote装的豆子最多。最后输出狗狗吃掉的豆子数目,即s p的结果。 抽象后表述为:给定n,p,k,以及n项数列[wi],要求找出其一个连续子序列,使得其和s在满足s p<=k的条件下最大,输出s整除p的结果。-Double-ended queue used in
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-05-02
    • 文件大小:549888
    • 提供者:ChenSiyu
  1. MaxSum-(2)

    0下载:
  2. 用动态规划算法实现最大m子段和问题,给定N个整数组成的序列,以及一个正整数m,要求确定序列的m个不相交子段,使这m个子段的总和达到最大-Dynamic programming algorithm with the maximum m sub-section and the problem, given a sequence of N integers, and a positive integer m, required to determine the sequence of m disjoi
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:524
    • 提供者:奚雅诺
  1. Maximum-Increasing-subsequences

    0下载:
  2. 最大递增子序列,动态规划经典算法 设L=<a1,a2,…,an>是n个不同的实数的序列,L的递增子序列是这样一个子序列Lin=<aK1,ak2,…,akm>,其中k1<k2<…<km且aK1<ak2<…<akm。求最大的m值。-Maximum increment sequence, the classic dynamic programming algorithm set L = <a1,a2,…,an> Are n d
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:1331
    • 提供者:chaolan
  1. maxsubsequence

    0下载:
  2. 输入一组数字序列后能够找到它的一组上升的最大长度的子序列。输出长度并输出此序列-Input a set of digital sequence can find it after a group of rising maximum length son sequence. Output length and output the sequence
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:962
    • 提供者:张振兴
  1. sub-sequence

    0下载:
  2. 首先开设一个空间比较大的数组,从数组尾部开始。比较最后一个数和最 初设置在数组中的一个最大值,使得最小子序列及最小子序列初始化。记录在当前位置的最小子序列数,接着,继续与在其前面相邻的数进行比较。如果后者大于前者,者比较二者携带记录的最小子序列数的大小,如果后者持有的最小子序列数大于前者,则以后者为基准,最小子序列保持不变。反之,则将后者的子序列数自加一,将其改为前所持有的最小子序列数。继续重复前面的动作,最后得出最长不下降子序列的数目及内容。 -First to open a larg
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:619
    • 提供者:刘善梅
  1. BZZXL

    0下载:
  2. 不增子序列,求一序列的最大不增子序列长度-No increase in promoter sequences, find a sequence does not increase sub-sequence length
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-03
    • 文件大小:227983
    • 提供者:kongfanfang
  1. zixulie

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

    • 发布日期:2017-03-30
    • 文件大小:131126
    • 提供者:1111
  1. nyoj16

    0下载:
  2. 经典算法,最大单调递增子序列,查看最多能嵌入多少个矩形-The classical algorithm monotonically incrementing subsequence view can be embedded in the number of rectangular
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-14
    • 文件大小:633
    • 提供者:彭城
  1. MaxSum

    0下载:
  2. 求子序列最大值的实现算法-Subsequence maximum! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-21
    • 文件大小:524
    • 提供者:huangsu
  1. LCS

    0下载:
  2. 用Java实现的LCS最大公共子序列算法,输入从文件中读取ASCII码-LCS common subsequence algorithm implemented in Java, the input is read from the file in ASCII
  3. 所属分类:Data structs

    • 发布日期:2017-11-17
    • 文件大小:3031
    • 提供者:xiaotian
  1. LCS

    0下载:
  2. 求解所有的最大公共子序列,用于比较两个各字符串-All of LCS
  3. 所属分类:source in ebook

    • 发布日期:2017-11-18
    • 文件大小:12952
    • 提供者:吴江
  1. the-largest-contiguous-subsequence

    0下载:
  2. 输入n个元素组成的序列S,找出最大的一个连续子序列,若乘积为正输出结果,否则输出-1(表示无解)-Input sequence S of n elements, to identify one of the largest contiguous subsequence, if the product output, or output-1 (which means that no solution)
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-02
    • 文件大小:609
    • 提供者:周能
  1. shujujiegou

    0下载:
  2. 高级数据结构-K路归并、两个线性表合并、亲戚问题、食物链问题、约瑟夫问题、最大连续子序列-Advanced data structures-K road merge, merge two linear tables, relatives problem, the food chain problem, Joseph problem, the maximum contiguous subsequence
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-08
    • 文件大小:57861
    • 提供者:calvin
  1. max

    0下载:
  2. 求一个数组的最大上升子序列(即数值增大的最长序列)-Seeking an array of maximum rise sequences (ie, the longest sequence of increasing value)
  3. 所属分类:Data structs

    • 发布日期:2017-05-19
    • 文件大小:5203239
    • 提供者:
  1. LCS

    0下载:
  2. LCS 问题 最大公共子序列 LCS 问题 最大公共子序列-The biggest problem common subsequence LCS LCS LCS biggest problem common subsequence problem largest common subsequence
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-12
    • 文件大小:1051
    • 提供者:石飞达
  1. MaxSum

    0下载:
  2. 最大和子序列问题,有例子,还有算法思想讲解-Maximum and subsequence problem, there are examples, there are thought to explain the algorithm
  3. 所属分类:matlab

    • 发布日期:2017-05-01
    • 文件大小:172600
    • 提供者:向云武
« 1 23 »
搜珍网 www.dssz.com