CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - longest increasing subsequence

搜索资源列表

  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-04
    • 文件大小:753970
    • 提供者:无我
  1. lcsLength

    0下载:
  2. 给定一个数组,通过快速排序法,把数组里面的数按照从小到大进行排序,即递增序列。然后用lcsLength函数找出最长递增子序列。-Given an array by quicksort method, the number inside the array from small to large in accordance with the sort, that is, incremental sequence. LcsLength function and then find the longe
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-02
    • 文件大小:6612
    • 提供者:Katherine
  1. Job4

    0下载:
  2. 本程序实现了找出一个n个数的序列中最长的单调递增子序列,并符带测试数据-This program implements to find a sequence of n the number of the longest monotonically increasing subsequence, and to break with the test data
  3. 所属分类:matlab

    • 发布日期:2017-03-28
    • 文件大小:37212
    • 提供者:johnson
  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-07
    • 文件大小:52161
    • 提供者:陈晨
  1. lcis

    0下载:
  2. A Fast Algorithm for Computing a Longest Common Increasing Subsequence
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:114234
    • 提供者:balrog
  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. Liss

    0下载:
  2. 本程序实现求一个给定数列的最长单调递增子序列的长度和其中的一个序列-The program seeking to achieve a given series of the longest monotone increasing subsequence of length and one sequence
  3. 所属分类:matlab

    • 发布日期:2017-03-29
    • 文件大小:1872
    • 提供者:李拂晓
  1. maximumincreasingsubsequence

    0下载:
  2. Longest Common Subsequence A simple way of finding the longest increasing subsequence is to use the Longest Common Subsequence (Dynamic Programming) algorithm. 1. Make a sorted copy of the sequence A, denoted as B. O(nlog(n)) time. 2.
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:8293
    • 提供者:jiraheta
  1. longestorder

    0下载:
  2. 动态规划思想解决的最长单调上升子序列程序,内容包含整个工程文件。-Dynamic programming to solve the longest monotonically increasing subsequence of the program, contains the entire project file.
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:368621
    • 提供者:liu
  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. fad

    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的子序列又是Y的子序列时,称Z
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:4102
    • 提供者:杨思翔
  1. missle

    0下载:
  2. 一个用于计算最长递增子列的代码,值得玩味。-A code used to calculate the longest increasing subsequence, worth pondering.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-01
    • 文件大小:4672
    • 提供者:王程序
  1. 3-1-Longest-Increasing-Subsequence

    0下载:
  2. 3-1 Longest Increasing Subsequence
  3. 所属分类:Data structs

    • 发布日期:2017-11-19
    • 文件大小:690
    • 提供者:henry
  1. lab4

    0下载:
  2. 最长递增子序列 问题描述: 随机生成小于等于n的自然数的一个序列, 输出其最长递增子序列(任意一个即可)。 n 分别取 1000,3000,10000。 例: n=5 随机序列为 5 1 4 2 3,正确输出为1 2 3, 即长度为3的递增子序列。 提示:参考LCS,思考能否达到时间复杂度(O(nlogn)) -Longest increasing subsequence problem descr iption: randomly generate
  3. 所属分类:Algorithm

    • 发布日期:2017-04-10
    • 文件大小:1079
    • 提供者:zero
  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. nlogn_lis

    0下载:
  2. This an NlogN solution for longest increasing subsequence-This is an NlogN solution for longest increasing subsequence
  3. 所属分类:Algorithm

    • 发布日期:2017-04-11
    • 文件大小:801
    • 提供者:ABHISHEK
搜珍网 www.dssz.com