搜索资源列表

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

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:zz
  1. kmp

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

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:chen
  1. kmp

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

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

    0下载:
  2. Knuth-Morris-Prath Pattern Matching algorithm in Matlab
  3. 所属分类:其他小程序

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

    0下载:
  2. KMP。。对于ACM极其有用哦-KMP
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-18
    • 文件大小:18432
    • 提供者:杨杰
  1. MPI-StringMatch

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

    • 发布日期:2024-05-18
    • 文件大小:10240
    • 提供者:不死鸟
  1. acm

    0下载:
  2. ACM算法模板,包含了绝大多数的算法 ,KMP,SEG-TREE,高精度模板-ACM algorithm template that contains the majority of algorithms, KMP, SEG-TREE, high-precision template
  3. 所属分类:Windows编程

    • 发布日期:2024-05-18
    • 文件大小:396288
    • 提供者:Jelly
  1. KMP

    0下载:
  2. KMP字符串匹配算法 KMP字符串匹配算法-KMPKMPKMPKMPKMPKMPKMP
  3. 所属分类:其他小程序

    • 发布日期:2024-05-18
    • 文件大小:146432
    • 提供者:longliu
  1. KMP

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

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:苏鸿星
  1. KMP

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

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:Lelouch
  1. kmp

    0下载:
  2. 介绍了KMP算法的基本内容和程序,这时数据结构内容的一部分!谢谢分享!-KMP
  3. 所属分类:软件工程

    • 发布日期:2024-05-18
    • 文件大小:117760
    • 提供者:杨战
  1. KMP

    0下载:
  2. C语言KMP字符串搜索算法实现 -C-KMP string search algorithm
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-18
    • 文件大小:5120
    • 提供者:林海涵
  1. Test_KMP

    0下载:
  2. 基于Java开发的KMP例子,教学中关于KMP算法的研究-This is about KMP created on Java
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-18
    • 文件大小:20480
    • 提供者:legend
  1. KMP

    0下载:
  2. 使用KMP算法能减少完成的串模式匹配的回溯,因此该算法每当一趟匹配过程中出现字符比较不等时,不需要回溯i指针,而是利用已匹配到的“部分匹配”的结果将模式右滑尽可能远的一段距离进行比较-KMP algorithm can reduce the use of string pattern matching complete retrospective, so the algorithm whenever the character appe
  3. 所属分类:其他小程序

    • 发布日期:2024-05-18
    • 文件大小:16384
    • 提供者:吴正学
  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-
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-18
    • 文件大小:610304
    • 提供者:宇烁
  1. kmp

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

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

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

    • 发布日期:2024-05-18
    • 文件大小:4096
    • 提供者: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. 所属分类:数据结构常用算法

    • 发布日期:2024-05-18
    • 文件大小:635904
    • 提供者: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 lo
  3. 所属分类:其他小程序

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:戴高远
  1. kmpplayer

    0下载:
  2. kmp播放器是一款很好用的视频音频播放器,画面清晰,音质高-kmp player
  3. 所属分类:流媒体/Mpeg4

    • 发布日期:2024-05-18
    • 文件大小:14444544
    • 提供者:刘云
« 1 2 3 4 5 6 78 9 10 11 12 ... 29 »

源码中国 www.ymcn.org