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

搜索资源列表

  1. kmp

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

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

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

    • 发布日期:2017-04-12
    • 文件大小:619
    • 提供者: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
    • 文件大小:946
    • 提供者:fppling
  1. kmp

    0下载:
  2. 数据结构中kmp算法的详解,对于数据结构的学习有较大的帮助-Data structure algorithm kmp Detailed
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:3220
    • 提供者:孔令龙
  1. kmp

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

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

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

    • 发布日期:2017-04-05
    • 文件大小:1297
    • 提供者:ooooo825
  1. kmp

    0下载:
  2. KMP算法的一个实例。输入目标串和模板串返回为查找成功的位置-An example of KMP algorithm. Enter the target string and the template for the search string to return to the location of the successful
  3. 所属分类:Data structs

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

    0下载:
  2. KMP算法,能够实现字符串的模式匹配!C++语言实现!-KMP 算法,能够实现字符串的模式匹配!
  3. 所属分类:Data structs

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

    0下载:
  2. 快速实现模式匹配的kmp算法,时间复杂度仅为O(n*m)-Rapid kmp pattern matching algorithm, time complexity is only O (n* m)
  3. 所属分类:Data structs

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

    0下载:
  2. KMP算法的实现,算法复杂度为O(m+n),C++。-KMP Algorithm, algorithm complexity is O (m+ n), C++.
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:597
    • 提供者:苏鸿星
  1. kmp

    0下载:
  2. KMP String Matching VC++实现的KMP字符串匹配算法-KMP String Matching VC++ implementation of the KMP string-matching algorithms
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:515365
    • 提供者:彭石
  1. KMP

    0下载:
  2. KMP算法的一个小型实现...可能太菜了点-KMP algorithm is an implementation ... may be too small dishes of point ...
  3. 所属分类:Data structs

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

    0下载:
  2. KMP 模式匹配算法实例 C++源码 字符串查找-KMP pattern matching algorithm in C++ source code search string
  3. 所属分类:source in ebook

    • 发布日期:2017-03-29
    • 文件大小:674
    • 提供者:xilo
  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
    • 文件大小:16328
    • 提供者:吴正学
  1. vckmp

    0下载:
  2. KMP 算法是由Knuth,Morris和Pratt等人共同提出的,所以成为Knuth-Morris-Pratt算法,简称KMP算法。KMP算法是字符串模式匹配中的经典算法。和BF算法相比,KMP算法的不同点是匹配过程中,主串的位置指针不会回溯,这样的结果使得算法时间复杂度只为O(n+m)。 采用VC++开发,实现KMP字符串匹配算法-KMP algorithm by Knuth, Morris and Pratt, who co-sponsored, so as Knuth-Morris-
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-01
    • 文件大小:610798
    • 提供者:宇烁
  1. kmp

    0下载:
  2. kmp算法:在一个长字符串中匹配一个短子串的无回溯算法。-kmp algorithm: a long string of matches in a short sub-strings of non-backtracking algorithm.
  3. 所属分类:Mathimatics-Numerical algorithms

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

    0下载:
  2. KMP是一种字符串查找算法,具有无需回溯的特点,效率高,本源码实现了KMP算法-KMP
  3. 所属分类:Data structs

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

    0下载:
  2. KMP算法的具体实现,能够在O(n+m)时间内找出字串在父串中的位置,n为父串长度,m为字串长度-KMP in the proposed algorithm, can be O (n+ m) time to find the string in the parent string position, n the parent string length, m for the string length
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:636403
    • 提供者:chenchencehn
  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. 1)编程动态实现简单模式匹配算法及模式匹配KMP算法; 2)根据给定的主串与模式串,给出根据两种匹配算法进行匹配的各趟匹配结果。 -KMP
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:2179
    • 提供者:zhangxing
« 1 2 34 5 6 7 8 9 10 ... 20 »
搜珍网 www.dssz.com