搜索资源列表
字符串匹配算法(KMP KR BM)
- 单模式字符串匹配算法里面最经典的算法,KMP算法,KR算法 和BM算法
kmp.rar
- 字符串的kmp匹配算法并行计算的源程序。,KMP string matching algorithm parallel computation of the source.
kmp
- 使用并行计算编程工具OpenMp实现kmp串匹配-The use of parallel computing OpenMP programming tools to achieve KMP String Matching
kmp
- kmp算法:查找一个字符串是不是另一个字符串的子串-kmp algorithm: to see whether a string is a substring of another string
KMP
- 本文给出KMP算法的C++源代码 很好用的 直接下载后就能用-This paper show KMP algorithm in C++ source code.It can be used directly very well after download. after
KMP
- KMP算法详解,有关于搜索类的算法,很经典,学习算法的可以看看!-Detailed KMP algorithm, english class has about algorithms, classic, learning algorithms can look at!
kmp
- kmp算法 我模仿着写的 不过还是有些不会 我写了不少注释-i dontEnglish
kmp
- 给你A,B两个字符串,检查B串是否是A串的子串,类似于Java的String.indexOf("")。找到匹配失败时的最合适的回退位置,而不是简单的回退到子串的第一个字符(常规的枚举查找方式,是简单的回退到子串的第一个字符,KMP算法的性能分析Java实现实例)*此仅供大家参考、交流,希望对大家有所帮助!-Here you are A, B two strings to check whether string B is a sub-string A string, similar to Jav
KMP--suanfa
- 初看kmp算法的时候有点模糊,第一次就根本没明白过。 仔细的推敲。找相关类似的问题。现在把源程序贴出来供大家参考。 关键一点就是要了解next函数的构造,以及为什么要这么做。在数据结构中的next推倒,不过不是很好理解。 其中next是按1开始。 -Kmp algorithm for the beginning of the time look a bit vague on the first did not understand too. Careful scrutiny. To fin
kmp
- KMP字符串匹配算法C语言实现 精确度高-KMP string matching algorithm C language to achieve high accuracy
kmp
- 用C语言实现KMP算法(字符串匹配过程)-Using C language KMP algorithm (string matching)
KMP
- poj 上的几道kmp 题的解题报告 sourse code of kmp algorithm -sourse code of kmp algorithm
kmp
- KMP String Matching VC++实现的KMP字符串匹配算法-KMP String Matching VC++ implementation of the KMP string-matching algorithms
KMP
- 求解KMP算法,用的是c++语言进行编写,KMP是一种迅速的字符串匹配算法,输入文本和要匹配的字符串即可-a solution of KMP alogorithms
KMP
- KMP算法源代码,很好用的。 KMP算法源代码,很好用的。-just do it!
KMP
- KMP 模式匹配算法实例 C++源码 字符串查找-KMP pattern matching algorithm in C++ source code search string
KMP
- 基于KMP算法的字符串匹配源码, 支持通配符,单匹配和多重匹配。 效率比较高-KMP string matching algorithm based on source code, support for wildcards, single match and multiple match. More efficient
mpi-kmp
- 详细的kmp并行算法实现源代码,在机群系统上适用,并附加详细的算法说明-Kmp parallel algorithm in detail the source code for the cluster systems, and additional details of the algorithm descr iption
KMP
- 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
KMP
- 简单的kmp算法,使用了next数组帮助定位匹配串的下一个匹配位置(A common kmp algorithm)