CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 文档资料 搜索资源 - longest

搜索资源列表

  1. zixulie

    0下载:
  2. 一个求最长子序列的辕马~~~ 要的自己下!~~ 我也是无奈啊-a son for the longest sequence of shaft horse ~ ~ ~ themselves to the next! ~ ~ I was helpless ah
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:1.34kb
    • 提供者:陈健东
  1. LCS(c++)

    0下载:
  2. LCS Algorithm, this is a c++ code for lcs(Longest Common Subsequence)
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:7.91kb
    • 提供者:劉逸
  1. 基于Hough变换的车牌倾斜检测算法

    0下载:
  2. 典型的角度检测算法是进行Hough变换后寻找最长直线的倾斜角度.一般情况 下,待处理图象中未必有明显的较长直线.甚至存在一些对图像进行正确检测的长直线干扰 文 章介绍了一种基于统计考虑的数据分析思路,以期在基于Hough变换的角度检测算法上取得更高 的准确性。,The perspective of a typical detection algorithm is the Hough transform to find the longest straight line after the
  3. 所属分类:文档资料

    • 发布日期:2016-03-26
    • 文件大小:178.33kb
    • 提供者:liyu
  1. zuichang1

    0下载:
  2. 计算一个数组中最长子序列,功能其实很简单。-An array of computing the longest sequence, function is actually very simple.
  3. 所属分类:software engineering

    • 发布日期:2017-04-02
    • 文件大小:1.14kb
    • 提供者:LHY
  1. ac

    0下载:
  2. 最长上升子序列 非常经典的问题。 给定的整数序列,请求出其最长上升子序列的长度。 有多个测试用例。每个测试用例由一个行整数组成,其中第一个是一个整数 n (1 ≤ n ≤ 10000),表示给定序列的长度。然后是 n 个 32-bits 带符号整数表示序列中的元素。 输入直至没有数据或者遇到长度 n 是非正数为止。 -Increase in the longest sequence is a classic problem. A given integer sequen
  3. 所属分类:software engineering

    • 发布日期:2017-04-15
    • 文件大小:4.81kb
    • 提供者:霍小明
  1. longest

    0下载:
  2. lcm all possible numbers
  3. 所属分类:software engineering

    • 发布日期:2017-04-06
    • 文件大小:512.18kb
    • 提供者:anand
  1. GeoLPM_ATNAC_2004

    0下载:
  2. One of the major weakness of existing peer-to-peer networks is that their overlay structures do not match well with the physical underlying network topology. In this paper, we present a Geographical Longest Prefix Matching (Geo-LPM) scheme wh
  3. 所属分类:Communication

    • 发布日期:2017-04-01
    • 文件大小:129.26kb
    • 提供者:hanh
  1. LSC(full)

    0下载:
  2. lcs 求出全部的最长公共子序列,实验程序全部采用Java实现,编译器为J2SE SDK 1.5.0_06,集成环境为Eclipse 3.1.2。-lcs find all of the longest common subsequence, experimental procedure used in all Java implementation, the compiler for the J2SE SDK 1.5.0_06, an integrated environment for Ec
  3. 所属分类:Document

    • 发布日期:2017-03-28
    • 文件大小:4.79kb
    • 提供者:randoll
  1. parser

    0下载:
  2. Elimination of left factoring in the given grammar For each nonterminal A find the longest prefix (alpha) common to two or more of its alternatives.If alpha is not equal epsilon,i.e..,there is a nontrivial common prefix,replace all the A productio
  3. 所属分类:software engineering

    • 发布日期:2017-04-01
    • 文件大小:8.24kb
    • 提供者:mahi
  1. ural1297

    0下载:
  2. 算法分析:将整个字符串反过来写在原字符串后面。中间用一个特殊的字符隔开,中间我用的是0,最后面我又加了一个字符1, 如果再加0 很可能会出错。(最后一个应该也可以不加),这样就把问题变为了求这个新的字符串的某两个后缀的最长公共前缀 注意:提供一组数据 zzzdzaadzzz 答案应该输出zzz,而如果不仔细的话程序可能会输入zdz,因为有可能答案前缀没有相邻,所这里就得加上一个循环判断处理。因为这个WA三次 -Algorithm analysis: the entire strin
  3. 所属分类:File Formats

    • 发布日期:2017-03-29
    • 文件大小:1.06kb
    • 提供者:hansen
  1. PKU1743

    0下载:
  2. 题意:给出一个旋律,用n个数字[1,88]表示其音符,问它最长的主题长度是多少。一个旋律的主题是一段至少出现过两次的不重叠音乐片段。所谓重复出现,包括一段音乐全体加上某个数后再次出现。如1 2 3 4 5和5 6 7 8 9是同一个音乐片段。主题长度至少为5.无解输出0。-The meaning of problems: given a melody, with n numbers [1,88] that the note and asked it the subject of the long
  3. 所属分类:IT Hero

    • 发布日期:2017-03-28
    • 文件大小:1006byte
    • 提供者:hansen
  1. 111

    0下载:
  2. 最长公共子序列求解 一个给定序列的子序列是在该序列中删去若干元素后得到的序列。给定两个序列X和Y,当另一序列Z既是X的子序列又是Y的子序列时,称Z是序列X和Y的公共子序列。最长公共子序列就是求给定两个序列的一个最长公共子序列。动态规划可以有效的解决此问题。由最长公共子序列问题的子序列的最优子结构性质,可以建立子问题最优的递归关系。用c[i][j]记录序列Xi和Yi的最长公共子序列的长度-Solving the longest common subsequence for a given se
  3. 所属分类:software engineering

    • 发布日期:2017-04-02
    • 文件大小:1.81kb
    • 提供者:1111
  1. kmp_Ext

    0下载:
  2. 运用扩展KMP算法求出某一字符串与另一字符串的所有最长公共前缀-KMP algorithm the extended use of a string with another string of all longest common prefix
  3. 所属分类:software engineering

    • 发布日期:2017-04-09
    • 文件大小:965byte
    • 提供者:wrs
  1. DailyReport

    0下载:
  2. 一个系统基于javaweb 开发 非常好的一个系统希望下载-A systemAsked how managing to put them back on would feel, 29.1 per cent said it would be better than sex, 28.9 per cent thought it would beat a promotion, 20.6 per cent believed it would top a best friend s wedding, 20.
  3. 所属分类:software engineering

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

    0下载:
  2. 用GAL16V8设计可变长度序列信号发生器,在掌握伪随机序列性质的基础上,设计给定长度的伪随机序列信号发生器,也即设计给定n后(n为移位寄存器的级数)最长线性反馈移位寄存器序列。并在给定n产生的最长序列的基础上,截短出课题给出的序列长度,并用FM软件对可编程器件GAL16V8进行编程,以实现长度不同的序列信号发生器。-GAL16V8 design variable-length sequence signal generator based on the master pseudo-random
  3. 所属分类:Project Design

    • 发布日期:2017-04-17
    • 文件大小:383.4kb
    • 提供者:乔嘉麒
  1. LCS

    0下载:
  2. this the LCS that means find the Longest -this is the LCS that means find the Longest
  3. 所属分类:Document

    • 发布日期:2017-11-27
    • 文件大小:899byte
    • 提供者:omid
  1. sub

    0下载:
  2. 通过此程序,运用算法,实现最长子序列,帮助找出最长子序列。-Through this program, the use of the algorithm, the longest sub-sequence, to help find the longest subsequence.
  3. 所属分类:File Formats

    • 发布日期:2017-11-21
    • 文件大小:893byte
    • 提供者:
  1. aaa

    0下载:
  2. 算法设计与分析中的最长公共子序列的c++代码,很好的解决了此算法-Longest common subsequence algorithm design and analysis c++ code, a good solution to this algorithm
  3. 所属分类:software engineering

    • 发布日期:2017-11-24
    • 文件大小:679byte
    • 提供者:ding
  1. LED-CONTROL

    0下载:
  2. 基于单片机IAP技术的LED显示屏控制系统的设计,通过大量的实践检验,本控制系统是非常可靠的,利用该控制系统制作的小型LED 显示屏已达数十个,最长的已经运行了3 年以上。在运行过程中也对该控制系统作了多方面的改进。-Through a lot of practice tests, the control system is very reliable, the use of the control system produced small LED display has reached
  3. 所属分类:Communication

    • 发布日期:2017-11-07
    • 文件大小:363.78kb
    • 提供者:tylnyys
  1. finding-the-longest-word

    0下载:
  2. 在一串字符串之中,找到最长的单词,然后把它列举出来-In a string, find the longest word, then list it out.
  3. 所属分类:File Formats

    • 发布日期:2017-04-01
    • 文件大小:3.03kb
    • 提供者:张虎
« 12 »
搜珍网 www.dssz.com