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

搜索资源列表

  1. 31yn

    0下载:
  2. 设计一个O(n2)时间的算法,找出由n个数组成的序列的最长单调递增子序列。-design an O (n2) time algorithm to identify by the number n of the longest sequence monotonically increasing sequences.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1787
    • 提供者:33
  1. LISS_FAST

    0下载:
  2. 时间复杂度为O(nlogn)的最长单调递增子序列问题的计算程序。不是动态规划算法。在一分钟之内可以计算n=10^6个元素的递增子序列。-time complexity of O (nlogn) of the longest-monotonically increasing sequence of the program. Is not dynamic programming algorithm. In a minute can be calculated n = 10 ^ 6 elements
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:344660
    • 提供者:刘金义
  1. xqhqc

    0下载:
  2. 这是一个关于最长单调递增子序列的代码能运行-This is a monotonically increasing for the longest sequences of code to run
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1322
    • 提供者:青菜
  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. LCS

    0下载:
  2. 实现求解整数的递增子序列。给出一串整数,求解其最长递增子序列。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:7541
    • 提供者:wu
  1. zhshhf

    0下载:
  2. 整数划分问题: 对于正整数n,输出其和等于n且满足以下限制条件的所有正整数的形式,既组成和式的数字子左到右构成一个非递增的序列。例n=4,程序输出为 4=4 4=3+1 4=2+2 4=2+1+1 4=1+1+1+1
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:5464
    • 提供者:
  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
    • 文件大小:184438
    • 提供者:何雯
  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-03
    • 文件大小:753970
    • 提供者:无我
  1. zuichangdizengzishulie

    0下载:
  2. 所谓子序列,就是在原序列里删掉若干个元素后剩下的序列,以字符串"abcdefg"为例子,去掉bde得到子序列"acfg" 此程序可求出它最长的单调递增子序列。 -The so-called sub-sequences, that is deleted in the original sequence in a number of elements remaining after the sequence to the string abcdefg , for example, be r
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:863
    • 提供者:杨磊
  1. LIS

    0下载:
  2. MFC写的使用贪心算法求最小递增子序列。-calculate the longest increaing sub-sequence.
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:20000
    • 提供者:luckypig
  1. LongestIncSubSeq

    0下载:
  2. 求最长单调递增子序列。举例:原数组:1 5 1 3 1 56 21 6 86 2 1 6 5 22 1 5 9 62 1 3 56 31 1 56 3 1 1 66 3 1 6 6 3 1 6 6 1 结果: the longest monotonically increasing sub-sequence: Length: 14 Content:-Seeking the longest monotonically increasing subsequence. For exam
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:52161
    • 提供者:陈晨
  1. 2533

    0下载:
  2. poj上的第2533题,用dp实现求一个字符串的最长递增子序列,时间是O(n),语言是C-poj the first 2533 title, with dp achieve demand a string of the longest increasing subsequence, the time is O (n), the language is C++
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:2200
    • 提供者:chenchencehn
  1. LongestIncre

    0下载:
  2. 贪心算法,动态规划:最长递增子序列的实现,MFC编程。-Greedy algorithms, dynamic programming: the realization of the longest increasing subsequence, MFC programming.
  3. 所属分类:Data structs

    • 发布日期:2017-05-24
    • 文件大小:7941892
    • 提供者:邓国平
  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. 最长递增子序列

    0下载:
  2. 利用动态规划法求出,时间复杂度为O(N*2)
  3. 所属分类:数据结构常用算法

  1. longest-increasing-subsequence

    2下载:
  2. 数据结构 动态规划算法 最长递增子序列的C语言代码-Data structures dynamic programming algorithm longest increasing subsequence of C language code
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:726
    • 提供者:
  1. LongestSubsequence

    0下载:
  2. 对某一随机序列或手动输入学列求解最长单调递增子序列-Of a random sequence of solving the longest monotonically increasing sequence
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:7826
    • 提供者:王昳晗
  1. Algorithms

    0下载:
  2. 《算法分析与设计》书中一些算法的实现,包括二分搜索算法,循环与换位,自然合并排序,最长单调递增子序列等等,书中1-16号算法实现- Algorithm Analysis and Design book of some algorithm, including the binary search algorithm, circulation and transposition, natural merge sort, the longest monotonically increasing se
  3. 所属分类:Data structs

    • 发布日期:2017-04-27
    • 文件大小:7740
    • 提供者:程浩
  1. 最长递增子序列

    1下载:
  2. 这是数据结构和算法设计中的经典案例题,代码不唯一,最长公共子序列源码和动态规划ppt分析(This is a classic case of data structure and algorithm design, the code is not unique, the largest m sub segment and source code and dynamic programming ppt analysis)
  3. 所属分类:数据结构

    • 发布日期:2018-01-05
    • 文件大小:2011136
    • 提供者:桀骜不驯
  1. 5.1 最长递增子序列

    2下载:
  2. 用c++语言采用动态规划手段完成寻找某序列的最长递增子序列(Using the dynamic programming method in c++ language to find the longest incrementing subsequence of a sequence)
  3. 所属分类:数据结构

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