CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - kmp算法

搜索资源列表

  1. 文档助手算法以及算法分析

    0下载:
  2. 用kmp算法实现的文档助手算法-with KMP algorithm document assistant algorithm
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:4.77kb
    • 提供者:受冻
  1. KMP

    0下载:
  2. KMP算法详解,有关于搜索类的算法,很经典,学习算法的可以看看!-Detailed KMP algorithm, english class has about algorithms, classic, learning algorithms can look at!
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:2.24kb
    • 提供者:xiaer
  1. kmp

    0下载:
  2. kmp算法的C++实现 系统有部分是伪代码,可以作为一个重要的 参考还包括一个hirschberg实现源码-KMP implementation
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-28
    • 文件大小:1.91kb
    • 提供者:wangwei
  1. kmp

    0下载:
  2. 用C语言实现KMP算法(字符串匹配过程)-Using C language KMP algorithm (string matching)
  3. 所属分类:CSharp

    • 发布日期:2017-03-21
    • 文件大小:620byte
    • 提供者:赵珑
  1. KMP

    1下载:
  2. 求解KMP算法,用的是c++语言进行编写,KMP是一种迅速的字符串匹配算法,输入文本和要匹配的字符串即可-a solution of KMP alogorithms
  3. 所属分类:Windows Develop

    • 发布日期:2016-01-24
    • 文件大小:1016.66kb
    • 提供者:comeon0r
  1. KMP

    0下载:
  2. 使用KMP算法能减少完成的串模式匹配的回溯,因此该算法每当一趟匹配过程中出现字符比较不等时,不需要回溯i指针,而是利用已匹配到的“部分匹配”的结果将模式右滑尽可能远的一段距离进行比较-KMP algorithm can reduce the use of string pattern matching complete retrospective, so the algorithm whenever the character appears in a visit the matching pr
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:15.95kb
    • 提供者:吴正学
  1. KMP

    0下载:
  2. 基于KMP算法的字符串匹配源码, 支持通配符,单匹配和多重匹配。 效率比较高-KMP string matching algorithm based on source code, support for wildcards, single match and multiple match. More efficient
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:153.2kb
    • 提供者:nimo
  1. KMP-nextval

    0下载:
  2.  KMP算法是通过分析子串,预先计算每个位置发生不匹配的时候,所需GOTO的下一个比较位置,整理出来一个next数组,然后再上面的算法中使用。 -KMP algorithm is by analyzing the sub-string, place pre-calculated for each location does not match the time required to compare the next GOTO location, sorted out a next arra
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:633byte
    • 提供者:戴高远
  1. KMP

    0下载:
  2. 实现KMP算法,输入三组主串S和模式串P,输出模式串的Next(j)函数值,以及该P在S中的位置的定位函数值,即序号值。其中S的长度为15~25,P的长度为5~8。-KMP algorithm implementation, the input string S and the three main pattern string P, the output mode string Next (j) function values, and the P' s position in the
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:719byte
    • 提供者:潘锦雷
  1. KMP

    0下载:
  2. 字符串的快速匹配问题,输入输出字符串,用KMP算法解决-Fast string matching problem, input and output strings, with the KMP Algorithm
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:1.12kb
    • 提供者:xujian
  1. kmp

    0下载:
  2. 问题:串的模式匹配算法---KMP 方法:从主串S中寻找模式串T出现的位置。 基本思想:从主串S的第1个字符起和模式串T的第一个字符比较,若相等,则继续逐个比较后续字符;否则从主串的下一个字符再重新和模式的字符比较;依此类推,直到在主串S中找到模式串T的全部字符相匹配为止,这时匹配成功,否则匹配不成功;KMP算法可以在O(n+m)的时间数量级上完成串的模式匹配操作。其改进在于:每当一趟匹配过程中出现字符比较不等时,不需回溯i指针,而得利用已经得到的“部分匹配”的结果将模式向右滑动尽可能远
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-28
    • 文件大小:55.64kb
    • 提供者:李浩
  1. KMP

    0下载:
  2. KMP算法很有的算法 KMP算法很有的算法 -KMP algorithm is useful algorithms KMP algorithm algorithm KMP algorithm very very very algorithm KMP algorithm algorithm
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-04
    • 文件大小:4.88kb
    • 提供者:风情和
  1. kmp

    0下载:
  2. KMP算法,能够高效的实现字符串匹配的算法-KMP algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-12-02
    • 文件大小:2.19kb
    • 提供者:雪人儿
  1. Kmp

    1下载:
  2. 字符串匹配问题,最经典的KMP算法。p为模式串,t为主串。返回的是最大匹配数-String matching problem, the most classic of KMP algorithm. p is the pattern string, t the main string. Back is the maximum number of matches
  3. 所属分类:Windows Develop

    • 发布日期:2016-11-10
    • 文件大小:1kb
    • 提供者:陶翔
  1. KMP-Method

    0下载:
  2. 本程序描述了一种,KMP算法的C语言实现方法-KMP algorithm in C language
  3. 所属分类:Other systems

    • 发布日期:2017-11-26
    • 文件大小:157.3kb
    • 提供者:0000999
  1. the-algorithm-of-KMP

    0下载:
  2. 关键词:数据结构,算法,改进的KMP算法。-the algorithm of KMP
  3. 所属分类:Other systems

    • 发布日期:2017-11-19
    • 文件大小:628byte
    • 提供者:danzhenglian
  1. KMP

    0下载:
  2. KMP 用c++写的自我理解kmp 算法-KMP kmp
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-10
    • 文件大小:696byte
    • 提供者:xianglongjifei
  1. KMP

    0下载:
  2. 纯c语言实现了KMP算法,简单明了,只要这一个文件就可以编译运行-c language KMP algrithm
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-08
    • 文件大小:541byte
    • 提供者:sdfs
  1. KMP

    0下载:
  2. 简单的kmp算法,使用了next数组帮助定位匹配串的下一个匹配位置(A common kmp algorithm)
  3. 所属分类:其他

    • 发布日期:2017-12-20
    • 文件大小:287kb
    • 提供者:VLeHr
  1. 串kmp

    0下载:
  2. 串的kmp算法,希望大家采纳!!!!!!!!!!!!!!!!!(wqdewqefwqegqreghwerhethtwreh)
  3. 所属分类:其他

    • 发布日期:2018-01-10
    • 文件大小:1.16mb
    • 提供者:ewqeq
« 12 3 4 5 6 »
搜珍网 www.dssz.com