搜索资源列表

  1. KMP

    0下载:
  2. 关于KMP算法:字符串匹配问题。朴素匹配算法的改进版本。理解起来有些难度,但是十分高效-On the KMP algorithm: string matching problem. Improved version of the simple matching algorithm. To understand difficult, but very efficient
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:3697664
    • 提供者:仲崇鑫
  1. String-KMP

    0下载:
  2. 如何在C环境中使用KMP算法遍历一个字符串。-How to use KMP algorithm to traverse a string in a C environment.
  3. 所属分类:数据结构常用算法

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

    0下载:
  2. kmp 算法初级c++学习入门算法,简单实用易于学习-it is a KMP source code
  3. 所属分类:数据结构常用算法

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

    0下载:
  2. KMP算法,这是我在课后编的,能查找到所有的子串,并标记其位置,使用DEVCPP,也可以载入VC6.0工程中。先输入要查找的子串,再输入任意串,将从任意串中找到所有子串,包括重叠部分,并一一标号-KMP algorithm, which is a series of after school can find all the substring, and mark its location, use DEVCPP can also lo
  3. 所属分类:数据结构常用算法

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

    0下载:
  2. kmp算法的简单实现,应该对理解算法比较有帮助-kmp algorithm simple to implement, should help understand the algorithm more
  3. 所属分类:Linux/Unix编程

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

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

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

    0下载:
  2. 用c 实现的kmp算法,希望对大家有帮助-KMP algorithm implementation
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:7168
    • 提供者:于洪达
  1. KMP

    0下载:
  2. 对于KMP算法的自己写的的代码,有一定的优化-KMP algorithm, written in code, the optimization
  3. 所属分类:数值算法/人工智能

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

    0下载:
  2. 实现字符串内指定字符的快速查找,使用了KMP算法-Quickly find specific characters within the string, using the KMP algorithm
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:161792
    • 提供者:刘丽辉
  1. KMP

    0下载:
  2. 这是一个数据结构的算法,用来进行模式匹配,找到一个字符串中是否包含某个子串, 也就是KMP算法.里面内容比较全面,包括详细的注释。-this is a data structure, which to find whether a string contains a certain substing. Known as KMP,but it contains more content, including the exhaustiv
  3. 所属分类:数据结构常用算法

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

    0下载:
  2. 串的模式匹配算法,KMP算法教程,算法学习的必看知识,-KMP algorithm tutorial, the learning algorithm must-see knowledge
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:2557952
    • 提供者:dgwz
  1. KMP-Algorithm-analysis

    0下载:
  2. 用简单明了的方式描述了KMP算法的原理实现及推理过程,另外文档中还附加了算法的java实现及算法优缺点评析-KMP Algorithm analysis
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-20
    • 文件大小:70656
    • 提供者:李永民
  1. KMP

    0下载:
  2. 数据结构:KMP算法匹配成功次数,简单的算法实现,非可视化-Data structures: the KMP algorithm to match the number of successful
  3. 所属分类:操作系统开发

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

    0下载:
  2. 堪称经典的KMP算法,浅显易懂,一看就会!-i donot like say ennglish !!!OK !!
  3. 所属分类:数据结构常用算法

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

    0下载:
  2. KMP算法,对学习数据结构的同学有一些帮助-KMP algorithm, students learning data structures
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:3769344
    • 提供者:刘佳霖
  1. kmp

    0下载:
  2. 问题:串的模式匹配算法---KMP 方法:从主串S中寻找模式串T出现的位置。 基本思想:从主串S的第1个字符起和模式串T的第一个字符比较,若相等,则继续逐个比较后续字符;否则从主串的下一个字符再重新和模式的字符比较;依此类推,直到在主串S中找到模式串T的全部字符相匹配为止,这时匹配成功,否则匹配不成功;KMP算法可以在O(n+m)的时间数量级上完成串的模式匹配操作。其改进在于:每当一趟匹配过程中出现字符比较不等时,不需回溯i指针
  3. 所属分类:其他小程序

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

    0下载:
  2. kmp算法,能够读取txt和java文件,进行kmp查找匹配字符串后,可进行替换字符串-kmp algorithm, able to read the txt and java file, kmp find a matching string, the replacement string
  3. 所属分类:JSP源码/Java

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

    0下载:
  2. KMP算法很有的算法 KMP算法很有的算法 -KMP algorithm is useful algorithms KMP algorithm algorithm KMP algorithm very very very algorithm KMP algorithm algorithm
  3. 所属分类:其他小程序

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

    0下载:
  2. KMP算法,能够高效的实现字符串匹配的算法-KMP algorithm
  3. 所属分类:其他小程序

    • 发布日期:2024-05-20
    • 文件大小:2048
    • 提供者:雪人儿
  1. Kmp

    0下载:
  2. 字符串匹配问题,最经典的KMP算法。p为模式串,t为主串。返回的是最大匹配数-String matching problem, the most classic of KMP algorithm. p is the pattern string, t the main string. Back is the maximum number of matches
  3. 所属分类:Windows编程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:陶翔
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 25 »

源码中国 www.ymcn.org