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

搜索资源列表

  1. bm_c

    0下载:
  2. bm算法是串的一种匹配算法!本源代码介绍了bm算法的c实现。-bm algorithm is a string matching algorithm! Source code introduced bm Algorithm c achieve.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:961byte
    • 提供者:文万志
  1. mwm

    0下载:
  2. 一种多模串匹配算法,可以加快模式串匹配的速度-a multi-string matching algorithm, can speed up the pattern matching speed
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:15.62kb
    • 提供者:haifeng
  1. string_match

    0下载:
  2. 串匹配算法,KMP,QS,Horspool,RP
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1.81kb
    • 提供者:ck
  1. 改良快速模式匹配

    0下载:
  2. Knuth的快速模式匹配算法改良,可以匹配含通配符?和*的标准串-the rapid improvement of pattern matching algorithm can match with wildcards? * And the standard Series
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:7.41kb
    • 提供者:林志伟
  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. 用动态规划算法思想求最小编辑距离

    0下载:
  2. 用动态规划算法思想求最小编辑距离,即近似字符串匹配问题,Thinking of using dynamic programming algorithm for the minimum edit distance, that is, approximate string matching problem
  3. 所属分类:数据结构常用算法

    • 发布日期:2017-03-25
    • 文件大小:890byte
    • 提供者:Doreen
  1. MPI-StringMatch

    0下载:
  2. KMP串匹配、随机串匹配、近似串匹配的并行算法源码。-KMP string matching, randomized string matching, parallel algorithm for approximate string matching source code.
  3. 所属分类:MPI

    • 发布日期:2017-03-26
    • 文件大小:9.57kb
    • 提供者:不死鸟
  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
    • 文件大小:3.3mb
    • 提供者:funfunhit
  1. Dictionary

    0下载:
  2. 基于离散子串匹配算法的电子辞典。对每个词条算出一个匹配度,查询时根据匹配度大小依次顺序列出词条;词库较大,因此采用了分类索引的算法,提高了查询速度。-Based on discrete substring matching algorithm of electronic dictionaries. Calculated for each term of a match, the query sequence according to the size of matching entries li
  3. 所属分类:GDI-Bitmap

    • 发布日期:2017-03-30
    • 文件大小:15.33kb
    • 提供者:wxliu
  1. feng

    0下载:
  2. 此为openmp的简单运用,主要是运用openmp将串匹配算法并行化-This is simple to use OpenMP, mainly to the use of OpenMP parallel string matching algorithm
  3. 所属分类:GDI-Bitmap

    • 发布日期:2017-04-12
    • 文件大小:1.22kb
    • 提供者:吴日晖
  1. ACandACBM

    0下载:
  2. 多模字符串匹配算法。AC和AC-BM算法的c语言实现。以及字符串匹配算法的相关论文,英文原版论文,很有收藏参考价值。-Multi-mode string matching algorithm. AC and AC-BM algorithm c language. String matching algorithm, as well as the relevant papers, original papers in English, it is collection of reference v
  3. 所属分类:Data structs

    • 发布日期:2017-05-12
    • 文件大小:2.5mb
    • 提供者:shenzhang
  1. kmp

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

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

    0下载:
  2. LCS算法;即公共串匹配算法; 好了;不说了-LCS algorithm that public string matching algorithm
  3. 所属分类:Special Effects

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

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

    • 发布日期:2016-01-24
    • 文件大小:1016.66kb
    • 提供者:comeon0r
  1. wm

    0下载:
  2. Wu Manber 算法 c++实现 Wu Manber 算法 c++实现 -Wu Manber algorithm c++ implementation Wu Manber algorithm c++ implementation Wu Manber algorithm c++ implementation
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-03
    • 文件大小:2.79kb
    • 提供者:xupingyong
  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
    • 文件大小:596.48kb
    • 提供者:宇烁
  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
    • 文件大小:153.2kb
    • 提供者:nimo
  1. Bmsuanfa

    0下载:
  2. BM算法也是一种快速串匹配算法,BM算法与KMP算法的主要区别是匹配操作的方向不同。-BM algorithm is also a fast string matching algorithms, BM KMP algorithm and matching algorithm is the main difference between operating in a different direction.
  3. 所属分类:Special Effects

    • 发布日期:2017-04-03
    • 文件大小:954byte
    • 提供者:mashiwei
  1. wu-manber

    0下载:
  2. 经典的模式串匹配算法,WM算法的简单实现-Classic simple pattern matching algorithm, WM algorithm
  3. 所属分类:Linux Network

    • 发布日期:2017-04-07
    • 文件大小:7.14kb
    • 提供者:田娟娟
  1. 7105_0xFDF

    2下载:
  2. 浙江大学机器人竞赛文档:提供完整的上位机图像识别挑选物品的匹配算法、下位机反馈控制机器人完成行走路线以及串口通讯的Python/C++/Arduino C代码(Robot contest documentation of Zhejiang University.It provides complete image recognition of the host computer, the matching algorithm of the selected items, the feedback
  3. 所属分类:嵌入式/单片机编程

    • 发布日期:2017-12-11
    • 文件大小:5.37mb
    • 提供者:GHHHHH
« 12 3 4 5 6 7 »
搜珍网 www.dssz.com