搜索资源列表

  1. kmp算法

    0下载:
  2. kmp算法 源码
  3. 所属分类:源码下载

  1. stringmatch

    0下载:
  2. 字符串的模式匹配(KMP算法)-string pattern matching (KMP algorithm)
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-20
    • 文件大小:11264
    • 提供者:谭悦
  1. PatternMatching

    0下载:
  2. 这是计算机专业硕士生课程《算法设计与实现》中讲到的模式匹配算法的实现,并且将该算法与KMP算法进行了比较。-It was the professional degree programs, "Algorithm Design and Implementation" referred to the pattern matching algorithm implementation, and algorithm and
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:318464
    • 提供者:孙江萍
  1. KMPsuanfa

    0下载:
  2. 串的KMP算法,无回溯的模式匹配中最具代表性的是KMP算法。它是基于对模式本身的字符分布特征所进行的分析,生成模式的特征向量,显示了P= aab 匹配S= ababbaabaa 的优化的KMP算法过程。-Strings of KMP algorithm, no backtracking pattern matching is the most representative of the KMP algorithm. It is base
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:222208
    • 提供者:yellowdoo
  1. matchall

    0下载:
  2. 一个值得学习的模式匹配改进的KMP算法,含有详细的注释。(通过文件来读出输入输出)-A study to improve the KMP pattern matching algorithm, which contains detailed notes. (Through the file to read out the input and output)
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:3072
    • 提供者:wodezui-i
  1. kmp_suanfa

    0下载:
  2. KMP模式匹配算法,实现了用KMP算法无回溯查找字符串的功能-KMP pattern matching algorithm using the KMP algorithm without backtracking to find string function
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:李天宇
  1. KMP

    0下载:
  2. 著名的KMP算法 实现快速字符串匹配 其中还包括失效函数的实现-KMP famous fast string matching algorithm which also includes the realization of failure function
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:施欢欣
  1. Kmp_Normal

    0下载:
  2. 实现KMP算法,简单易懂,由学生实验实现,对于ACM学习有很大帮助。-Realize KMP algorithm, easy-to-read, by the students realize the experiment, the ACM study of much help.
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-20
    • 文件大小:1175552
    • 提供者:于镇波
  1. kmp_algorithm

    0下载:
  2. 自己编写的字符串匹配算法-经典的KMP算法,该算法当模式与主串之间存在许多“部分匹配”时能显示出其时间优越性。-I have written a string matching algorithm- the classical KMP algorithm when the model and between the main strings there are many
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:2048
    • 提供者:malota
  1. KMP

    0下载:
  2. kmp 算法 也许会有帮助的。。。大家快来下吧-KMP algorithm may be helpful. . . Come everyone, are you
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:xiong
  1. KMP

    0下载:
  2. 字符串匹配算法中的KMP算法的详细介绍和代码-String matching algorithm of KMP algorithm details and code
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:3072
    • 提供者:yiyi
  1. kmp

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

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:黄异
  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. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-20
    • 文件大小:3072
    • 提供者:cltclt
  1. KMP

    0下载:
  2. KMP算法详解,有关于搜索类的算法,很经典,学习算法的可以看看!-Detailed KMP algorithm, english class has about algorithms, classic, learning algorithms can look at!
  3. 所属分类:其他小程序

    • 发布日期:2024-05-20
    • 文件大小:2048
    • 提供者:xiaer
  1. kmp

    0下载:
  2. kmp算法 我模仿着写的 不过还是有些不会 我写了不少注释-i dontEnglish
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:137216
    • 提供者:荣百乐
  1. kmp

    0下载:
  2. 给你A,B两个字符串,检查B串是否是A串的子串,类似于Java的String.indexOf("")。找到匹配失败时的最合适的回退位置,而不是简单的回退到子串的第一个字符(常规的枚举查找方式,是简单的回退到子串的第一个字符,KMP算法的性能分析Java实现实例)*此仅供大家参考、交流,希望对大家有所帮助!-Here you are A, B two strings to check whether string B is a sub-s
  3. 所属分类:文档资料

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:左刘鸿翔
  1. KMP--suanfa

    0下载:
  2. 初看kmp算法的时候有点模糊,第一次就根本没明白过。 仔细的推敲。找相关类似的问题。现在把源程序贴出来供大家参考。 关键一点就是要了解next函数的构造,以及为什么要这么做。在数据结构中的next推倒,不过不是很好理解。 其中next是按1开始。 -Kmp algorithm for the beginning of the time look a bit vague on the first did not understand
  3. 所属分类:文档资料

    • 发布日期:2024-05-20
    • 文件大小:104448
    • 提供者:左刘鸿翔
  1. KMP

    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. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:5120
    • 提供者:lzj
  1. kmp

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

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:赵珑
  1. KMP

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

    • 发布日期:2024-05-20
    • 文件大小:1041408
    • 提供者:comeon0r
« 1 23 4 5 6 7 8 9 10 ... 25 »

源码中国 www.ymcn.org