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

搜索资源列表

  1. aglorithm

    0下载:
  2. 问题算法源代码:骑士遍历、万年历、N皇后问题回溯算法、动态计算网络最长最短路线、货郎担分枝限界图形演示、货郎担限界算法、矩阵乘法动态规划、网络最短路径Dijkstra算法-problems algorithm source code : Knight traversal, calendar, N Queens backtracking algorithms, Dynamic computing network longest shortest routes, traveling salesman
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:23.14kb
    • 提供者:安德里周
  1. zuichanggonggongzixulie

    0下载:
  2. 本程序实现的功能是给出了两个序列,找出他们的最长的公共子序列-this program is the function of the two sequences, identifying their longest public sequences
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:100.17kb
    • 提供者:liuqing
  1. number_of_subsequence

    0下载:
  2. 计算一个数列的最长递增子序列和最长递减子序列的长度-Calculation of a series of the longest increasing sub-sequence and the longest decreasing sequence of length
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:1.12kb
    • 提供者:金鹰翰
  1. longest

    0下载:
  2. Problem B:Longest Ordered Subsequence A numeric sequence of ai is ordered if a1 < a2 < ... < aN. Let the subsequence of the given numeric sequence (a1, a2, ..., aN) be any sequence (ai1, ai2, ..., aiK), where 1 <= i1 < i2 < ... &l
  3. 所属分类:Algorithm

    • 发布日期:2016-12-25
    • 文件大小:1kb
    • 提供者:hzf
  1. longest_subsequence

    0下载:
  2. 经典的计算最长公子序列,C语言编译,VC++下测试通过-calculate the longest public subsequence
  3. 所属分类:Algorithm

    • 发布日期:2017-04-12
    • 文件大小:885byte
    • 提供者:honze
  1. planteau

    0下载:
  2. 输入一个非递减整数数组,并判断其中最长的数字串-input a non-decreasing array, and determine the number of the longest string
  3. 所属分类:Algorithm

    • 发布日期:2017-04-25
    • 文件大小:24.66kb
    • 提供者:yumengze
  1. suanf

    0下载:
  2. 算法和算法设计中的有关于求解最长公共子序列的解决方法,最终可以动态显示求解过程-Algorithms and algorithm design for solving the longest common sub-sequence of solutions, and ultimately the solution process can be dynamic display
  3. 所属分类:Algorithm

    • 发布日期:2017-04-04
    • 文件大小:56.9kb
    • 提供者:wangyumei
  1. LCS

    0下载:
  2. longest common subsequence implementation
  3. 所属分类:Algorithm

    • 发布日期:2017-04-07
    • 文件大小:1.06kb
    • 提供者:chengers
  1. code

    0下载:
  2. 找出两个字符串的最长公共子串。 给出一个字符串,请删除该字符串的前导空格和尾随空格,中间的空格若多余1个删减到1个。 我是个菜鸟,但软件会是我终生的事业~我有信心学好它,希望站长通融-Two strings to find the longest common sub-string. Given a string, remove the string leading spaces and trailing spaces, if the extra spaces in the middle
  3. 所属分类:Algorithm

    • 发布日期:2017-04-01
    • 文件大小:990byte
    • 提供者:武侯
  1. SA-LCP

    0下载:
  2. This code shows you how to create a suffix array and how to use RMQ algorithm to get two suffix s longest common prefix.
  3. 所属分类:Algorithm

    • 发布日期:2017-03-27
    • 文件大小:1.71kb
    • 提供者:lkq
  1. USACO-beads

    0下载:
  2. 该题来自USACO,为最长串的查找,此处方法很笨,有更好方法-The title comes from USACO, for the longest string of the search, stupid way here, there are better ways
  3. 所属分类:Algorithm

    • 发布日期:2017-03-26
    • 文件大小:849byte
    • 提供者:netor
  1. Euler-Engineering

    0下载:
  2. Euler工程,找最长的数列! 定义一个正整数数列,其迭代公式为: n = n/2 (当n为偶数) n = 3n+1 (当n为奇数) 比如从n=13开始,计算这个数列得: 13 ->40->20->10->5->16->8->4->1 这个数列一共有10项。 要求在小于1百万的所有起始数中,哪个数能产生最长的数列。 -Euler project, find the longest series! Define a p
  3. 所属分类:Algorithm

    • 发布日期:2017-04-08
    • 文件大小:3.34kb
    • 提供者:superman
  1. huaxuewenti

    0下载:
  2. 滑雪中,是为了获得速度,滑的区域必须向下倾斜。Michael想知道在一个区域中最长底滑坡。区域由一个二维数组给出。数组的每个数字代表点的高度。下面是一个例子 1 2 3 4 5 16 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9 一个人可以从某个点滑向上下左右相邻四个点之一,当且仅当高度减小。在上面的例子中,一条可滑行的滑坡为24-17-16-1。当然25-24-23-...-
  3. 所属分类:Algorithm

    • 发布日期:2017-03-31
    • 文件大小:1.32kb
    • 提供者:Li
  1. a2

    0下载:
  2. Implementation a simple FIFO queue using arrays. Write a programs that will ask the user for the size of the queue. Then it will start reading characters from the keyboard and store them in the queue. If the user enters an empty line then the progr
  3. 所属分类:Algorithm

    • 发布日期:2017-04-10
    • 文件大小:728byte
    • 提供者:yeah
  1. a3

    0下载:
  2. Implementation a simple FIFO queue using linked lists. Write a programs that will ask the user for the size of the queue. Then it will start reading characters from the keyboard and store them in the queue. If the user enters an empty line then the
  3. 所属分类:Algorithm

    • 发布日期:2017-04-08
    • 文件大小:866byte
    • 提供者:yeah
  1. missle

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

    • 发布日期:2017-04-01
    • 文件大小:4.56kb
    • 提供者:王程序
  1. length

    0下载:
  2. 求两个字符串的最长公共子序列,可以手动输入也可以从文件读入字符串,字符串中允许有空格出现,这是广西大学的算法实验代码,如果是本校学生下载请注意修改,这是我自己写的,写得不好请海涵。-Seeking the longest common subsequence of two strings, you can manually input can also be read from a file into a string, string allows spaces appear, the algo
  3. 所属分类:Algorithm

    • 发布日期:2017-12-02
    • 文件大小:1.12mb
    • 提供者:fengjing
  1. Longest-Common-Subsequences

    0下载:
  2. Longest Common Subsequences
  3. 所属分类:Algorithm

    • 发布日期:2017-04-14
    • 文件大小:4.55kb
    • 提供者:Duong Tu
  1. Longest-repeated-substring

    0下载:
  2. 一个计算字符串中最长重复子串的算法,开发语言是C/C-A string of the longest repeated substring algorithm development of language is C/C++
  3. 所属分类:Algorithm

    • 发布日期:2017-04-07
    • 文件大小:14.5kb
    • 提供者:huangke
  1. the-longest-palindrome-substring

    0下载:
  2. 对于给定的一个字符串,求出其中最长的回文子串。其中子串的含义是:在原串中连续出现的字符串片段。本算法采用C++编程,一定是你不错的选择!-For a given string,we should find the longest palindrome substring. Which means that the substring: string fragment in the original string of consecutive. The algorithm uses the C++
  3. 所属分类:Algorithm

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