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

搜索资源列表

  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
    • 文件大小:2296
    • 提供者:xiaer
  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-06
    • 文件大小:16328
    • 提供者:吴正学
  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
    • 文件大小:633
    • 提供者:戴高远
  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
    • 文件大小:719
    • 提供者:潘锦雷
  1. KMP

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

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

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

    • 发布日期:2017-11-27
    • 文件大小:56972
    • 提供者:李浩
  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
    • 文件大小:4993
    • 提供者:风情和
  1. kmp

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

    • 发布日期:2017-12-02
    • 文件大小:2244
    • 提供者:雪人儿
  1. KMP-Method

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

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

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

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

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

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

    0下载:
  2. KMP算法程序,基于C++,可用于数据结构实验及教学-KMP algorithm procedure, based C++, data structures can be used for experimental and teaching
  3. 所属分类:Other systems

    • 发布日期:2017-04-17
    • 文件大小:503141
    • 提供者:smileagle
  1. KMP

    0下载:
  2. 字符串匹配算法,用KMP算法来解决字符匹配问题-String matching algorithm, using KMP algorithm to solve the problem of matching characters
  3. 所属分类:Other systems

    • 发布日期:2017-03-31
    • 文件大小:651
    • 提供者:xiaoxue
  1. KMP-Alg

    0下载:
  2. KMP算法即最小生成树算法,本示例用c语言编写的源码-KMP algorithm that minimum spanning tree algorithm, the sample with the c language source code
  3. 所属分类:Other systems

    • 发布日期:2017-04-07
    • 文件大小:14785
    • 提供者:changsheng wang
  1. KMP

    0下载:
  2. 编程求出子串(模式串)的next值,利用kmp算法实现子串与多个主串的匹配,针对同一子串next值只计算一次。-make use of KMP arithmetic
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:809
    • 提供者:XIE
  1. KMP

    0下载:
  2. 经典的KMP算法,判断一个字符串是否是另一字符串的子串-Classic KMP algorithm to determine whether a string is a substring of another string
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:918
    • 提供者:liang
  1. kmp

    0下载:
  2. KMP算法存在区别,于是尝试把01->00,再尝试打开,没有提示输入密码成功解压得到KMP 用mp3stego工具对文件进行解密。-KMP suan fa nim ma chao ni lao mu zhe xie zi gou le ma ? hai bu gou ,hai yao rang wo cao ni bu dnai fa fina fe mali nid de neh kminp daaf fecc var Standard information such as
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:1830
    • 提供者:linlin
  1. KMP

    0下载:
  2. 输入一个字符串, 然后用kmp算法来进行字符串匹配-Enter a string, and then use kmp string matching algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:543
    • 提供者:JASON
  1. KMP

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

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

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

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