CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - KMP algorithm

搜索资源列表

  1. kmp Algorithm

    0下载:
  2. 这是一个关于字符串匹配的kmp算法,程序简单精炼,可以借鉴一下-This is a match on the string of KMP algorithm, a simple refining process, we can draw about
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:922byte
    • 提供者:容器
  1. 字符串匹配的KMP算法

    0下载:
  2. 这是字符串匹配算法中很著名的KMP算法,此文件仅供大家参考,具体是否能调通,本人还没有试过-This is a string matching algorithm is famous KMP algorithm, this document is your reference, specifically whether Qualcomm will emphasize, I have not tried
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:4.07kb
    • 提供者:郑旋
  1. KMP匹配算法

    0下载:
  2. 由于简单模式匹配算法在一次字符比较失败后,简单的把模式串位置向前移动一个字符位置,这样就丢掉了前面字符匹配中得到的信息,效率差。所以就需要一种无回溯的算法来提高效率,这里使用KMP(Knuth-Morris-Pratt)算法。模式串前面的连续片断部分称“前缀模式”,前缀模式在模式串后部重复出现的情况可以用来避免重复进行已经做过的检查,这是KMP算法中的一个重要概念。-as simple pattern-matching algorithm to compare a character failu
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:3.18kb
    • 提供者:卢孝飞
  1. KMP.rar

    0下载:
  2. 我自己写的一个“文学研究助手”的程序,C语言写的,实现了从文件中查找字符串。用到了KMP算法。,I wrote it myself a " literary research assistant" process, C language, and the realization of the search string from the document. Used in the KMP algorithm.
  3. 所属分类:Data structs

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

    0下载:
  2. 数据结构中改进KMP算法,使用C语言实现-Improved KMP algorithm data structure, the use of C language
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:7.16kb
    • 提供者:LZ
  1. KMP

    0下载:
  2. KMP算法,有好几种写法,配上图形,简单易懂。C/C++编写。-KMP algorithm, there are several writing, accompanied by graphics, easy to understand. C/C++ written.
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:82.5kb
    • 提供者:andy
  1. DataStructure

    0下载:
  2. 展示数据结构的一些实用技巧. 包含: 1.运用kmp算法计算无穷概率 2.矩阵乘法的十种经典运算技巧 3.位运算的实用技巧(1) (2) (3)-Data structure to display a number of practical skills. Includes: 1. The use of KMP algorithm infinite probability 2. 10 kinds of classical matrix multiplication comp
  3. 所属分类:Data structs

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

    0下载:
  2. kmp算法的实现,简单程序,可以循环输入,可以输入特殊字符结束。 使用比较方便-KMP algorithm, simple procedures, could be re-input, the end can enter special characters. More convenient to use
  3. 所属分类:Data structs

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

    0下载:
  2. kmp算法的程序,效率很高,非常不错,吐血推荐-KMP algorithm procedures, efficient, very good, hematemesis Recommended
  3. 所属分类:Data structs

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

    0下载:
  2. kmp算法:查找一个字符串是不是另一个字符串的子串-kmp algorithm: to see whether a string is a substring of another string
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:821byte
    • 提供者:黄异
  1. KMP

    0下载:
  2. 本文给出KMP算法的C++源代码 很好用的 直接下载后就能用-This paper show KMP algorithm in C++ source code.It can be used directly very well after download. after
  3. 所属分类:Mathimatics-Numerical algorithms

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

    0下载:
  2. 实现KMP算法。 经典的模式搜索算法。-KMP algorithm realization. Classical algorithms.
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:619byte
    • 提供者:zhengwei
  1. 10253

    0下载:
  2. 本代码是在KMP算法上加以改进后,实现对一个字串求最长重复子序列。该算法可以与后缀树有相同原理。-The code is in the KMP algorithm be improved to realize for the longest string of a repeat sequence. The suffix tree algorithm with the same principle.
  3. 所属分类:Data structs

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

    0下载:
  2. KMP字符串匹配算法C语言实现 精确度高-KMP string matching algorithm C language to achieve high accuracy
  3. 所属分类:Data structs

    • 发布日期:2017-03-23
    • 文件大小:3.84kb
    • 提供者:li shu
  1. KMP

    0下载:
  2. KMP算法 在一个长字符串中匹配一个短子串的无回溯算法-KMP algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:1.27kb
    • 提供者:ooooo825
  1. KMP-algorithm

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

    • 发布日期:2017-03-29
    • 文件大小:303.38kb
    • 提供者:li
  1. BF-a-KMP-algorithm

    0下载:
  2. 实现BF算法和KMP算法,WORD文档格式,附有详细源码,带有程序运行截图-BF algorithm and the KMP algorithm implementation, WORD document format, with detailed source code, with the program running shots
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:139.88kb
    • 提供者:张丹玉
  1. KMP-algorithm

    0下载:
  2. 写了一个myString类,用于展示KMP 算法,有少量注释。-KMP algorithm, a small amount of Notes.
  3. 所属分类:Data structs

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

    0下载:
  2. KMP算法是一种改进的字符串匹配算法,由D.E.Knuth,J.H.Morris和V.R.Pratt同时发现,因此人们称它为克努特——莫里斯——普拉特操作(简称KMP算法)。(KMP algorithm is an improved string matching algorithm, discovered by D.E.Knuth, J.H.Morris and V.R.Pratt simultaneously, so people call it Knut Maurice Platt ope
  3. 所属分类:数据结构

    • 发布日期:2017-12-20
    • 文件大小:11kb
    • 提供者:法师学徒
  1. KMP

    0下载:
  2. KMP算法 最常用的用于字符串处理的算法(KMP Algorithm for string processing)
  3. 所属分类:数据结构

    • 发布日期:2018-04-29
    • 文件大小:270kb
    • 提供者:ecstasy_EC
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com