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

搜索资源列表

  1. kmp

    0下载:
  2. kmp算法的简单实现,应该对理解算法比较有帮助-kmp algorithm simple to implement, should help understand the algorithm more
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-01
    • 文件大小:657
    • 提供者:xujia
  1. KMP-algorithm

    0下载:
  2. c++文档 KMP算法的实现及注释 有详细的文档说明-KMP algorithm c++ document to achieve a detailed documentation and notes
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:310665
    • 提供者:li
  1. KMP

    0下载:
  2. 用c 实现的kmp算法,希望对大家有帮助-KMP algorithm implementation
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:6749
    • 提供者:于洪达
  1. KMP

    0下载:
  2. 对于KMP算法的自己写的的代码,有一定的优化-KMP algorithm, written in code, the optimization
  3. 所属分类:Mathimatics-Numerical algorithms

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

    0下载:
  2. 实现字符串内指定字符的快速查找,使用了KMP算法-Quickly find specific characters within the string, using the KMP algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:162122
    • 提供者:刘丽辉
  1. KMP

    0下载:
  2. 这是一个数据结构的算法,用来进行模式匹配,找到一个字符串中是否包含某个子串, 也就是KMP算法.里面内容比较全面,包括详细的注释。-this is a data structure, which to find whether a string contains a certain substing. Known as KMP,but it contains more content, including the exhaustive document.
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:1784
    • 提供者:王海
  1. kmp

    0下载:
  2. 串的模式匹配算法,KMP算法教程,算法学习的必看知识,-KMP algorithm tutorial, the learning algorithm must-see knowledge
  3. 所属分类:Data structs

    • 发布日期:2017-05-11
    • 文件大小:2557630
    • 提供者:dgwz
  1. KMP

    0下载:
  2. 数据结构:KMP算法匹配成功次数,简单的算法实现,非可视化-Data structures: the KMP algorithm to match the number of successful
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:21968
    • 提供者:王小二
  1. kmp

    0下载:
  2. 堪称经典的KMP算法,浅显易懂,一看就会!-i donot like say ennglish !!!OK !!
  3. 所属分类:Data structs

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

    0下载:
  2. KMP算法,对学习数据结构的同学有一些帮助-KMP algorithm, students learning data structures
  3. 所属分类:Data structs

    • 发布日期:2017-12-02
    • 文件大小:3769169
    • 提供者:刘佳霖
  1. kmp

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

    • 发布日期:2017-11-28
    • 文件大小: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

    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
    • 文件大小:1024
    • 提供者:陶翔
  1. kmp

    0下载:
  2. 利用kmp算法进行字符串查重的实例。文件夹为vs2012的工程文件。-Kmp algorithm for string duplicate checking instances. Folder vs2012 project file.
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-11-14
    • 文件大小:5677577
    • 提供者:好汉鱼
  1. Use-KMP-to-judge-string-match

    0下载:
  2. 用KMP算法判断正则表达式是否匹配,“?”匹配任意字符,“*”匹配一个或多个任意字符-KMP algorithm to determine whether the regular expression match, " ?" Matches any character, " *" matches one or more arbitrary characters
  3. 所属分类:Data structs

    • 发布日期:2017-11-07
    • 文件大小:1029
    • 提供者:jingjie
  1. kmp

    0下载:
  2. kmp算法说明:该运行实例中,令文本串长度为18,随机产生的文本串为asasasqmqmqmypypyp,分布在3个节点上;模式串长度为3,随机产生的模式串为qmq。最后,节点1上得到两个匹配位置,由+表示出来。 -kmp algorithm Descr iption: The running instance, so the length of the text string 18, random text string asasasqmqmqmypypyp, and distributi
  3. 所属分类:Data structs

    • 发布日期:2017-12-01
    • 文件大小:3814
    • 提供者:汪婷
  1. KMP---MFC

    0下载:
  2. 数据结构里面的KMP算法的可视化演示程序 MFC实现-Visualization of data structures inside the KMP algorithm demo program MFC implementation
  3. 所属分类:Data structs

    • 发布日期:2017-11-23
    • 文件大小:4306021
    • 提供者:jerry
  1. KMP-Method

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

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

    0下载:
  2. 使用c++编写的kmp算法来判断字符串匹配问题,字符串中素数判定使用millerrabin算法,经试验匹配准确率为100 -Use c++ to write the kmp algorithm to determine the string matching problem, string primes decision millerrabin algorithm, the test match accuracy was 100
  3. 所属分类:Algorithm

    • 发布日期:2017-11-23
    • 文件大小:2863
    • 提供者:冒佳明
« 1 2 3 4 5 67 8 9 10 11 ... 20 »
搜珍网 www.dssz.com