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

搜索资源列表

  1. Kmp

    0下载:
  2. 实现KMP模式匹配,模式匹配操作对象是字符串-achieve KMP, pattern-matching operations object is a string
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:53012
    • 提供者:小百
  1. KMP模式匹配(可以有通配符)

    0下载:
  2. 使用著名的KMP模式匹配算法进行字符串匹配,还可以有通配符-use of the famous KMP string matching algorithms can also be wildcards
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:7846
    • 提供者:张远洋
  1. DSDesign

    1下载:
  2. 实现并对比三种基本字符串匹配算法(朴素算法,Rabin-Karp算法,KMP),并给出动态演示结果~-And contrast to achieve three basic string-matching algorithm (simple algorithm, Rabin-Karp algorithm, KMP), and gives the results of the dynamic presentation ~
  3. 所属分类:GUI Develop

    • 发布日期:2017-05-27
    • 文件大小:3462504
    • 提供者:funfunhit
  1. kmp

    0下载:
  2. window 下的kmp 字符串 匹配算法。 -window under the KMP string matching algorithm.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-15
    • 文件大小:7850
    • 提供者:xiyang
  1. KMP

    0下载:
  2. KMP string matching method
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-14
    • 文件大小:4908
    • 提供者:Farmer Jiang
  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算法的C++实现 系统有部分是伪代码,可以作为一个重要的 参考还包括一个hirschberg实现源码-KMP implementation
  3. 所属分类:Windows Develop

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

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

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

    0下载:
  2. Knuth-Morris-Prath Pattern Matching algorithm in Matlab
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:537
    • 提供者:daniel769
  1. acm

    0下载:
  2. ACM算法模板,包含了绝大多数的算法 ,KMP,SEG-TREE,高精度模板-ACM algorithm template that contains the majority of algorithms, KMP, SEG-TREE, high-precision template
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-30
    • 文件大小:395859
    • 提供者:Jelly
  1. KMP

    0下载:
  2. KMP字符串匹配算法 KMP字符串匹配算法-KMPKMPKMPKMPKMPKMPKMP
  3. 所属分类:Other windows programs

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

    0下载:
  2. poj 上的几道kmp 题的解题报告 sourse code of kmp algorithm -sourse code of kmp algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-05-14
    • 文件大小:4094179
    • 提供者:qiuli
  1. KMP

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

    • 发布日期:2016-01-24
    • 文件大小:1041057
    • 提供者: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-06
    • 文件大小:16328
    • 提供者:吴正学
  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
    • 文件大小:156880
    • 提供者: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
    • 文件大小: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算法,使用了next数组帮助定位匹配串的下一个匹配位置(A common kmp algorithm)
  3. 所属分类:其他

    • 发布日期:2017-12-19
    • 文件大小:293888
    • 提供者:VLeHr
  1. Mazharul class Presentation of KMP algorithm

    0下载:
  2. KMP string match algorithm slide
  3. 所属分类:其他

    • 发布日期:2017-12-31
    • 文件大小:3510272
    • 提供者:Mazhar
  1. 串kmp

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

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