搜索资源列表

  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-20
    • 文件大小:1024
    • 提供者:戴高远
  1. KMP

    0下载:
  2. 1)编程动态实现简单模式匹配算法及模式匹配KMP算法; 2)根据给定的主串与模式串,给出根据两种匹配算法进行匹配的各趟匹配结果。 -KMP
  3. 所属分类:数据结构常用算法

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

    0下载:
  2. KMP算法一种实现。效率相对较高。简单实用。-An implementation of KMP algorithm. Efficiency is relatively high. Simple and practical.
  3. 所属分类:数据结构常用算法

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

    0下载:
  2. kmp算法 源代码 可实现多个匹配分析可实现多个匹配分析-kmp algorithm source code analysis of multiple matches
  3. 所属分类:数据结构常用算法

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

    0下载:
  2. KMP算法的实现,这个算法是比较复杂的,这个小程序可以帮助你理解KMP本质-This is the implement of KMP, which is hard for understanding. it can help you understand it well
  3. 所属分类:数据结构常用算法

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

    0下载:
  2. 字符串匹配的kmp算法,数据结构课后习题,亲测可用-Kmp string matching algorithms, data structures, Homework, pro-testing available
  3. 所属分类:数据结构常用算法

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

    0下载:
  2. 字符比较的模式匹配程序,采用KMP算法,可处理多达4级的匹配-Character comparison of the pattern matching procedure for the KMP algorithm can handle up to four matches
  3. 所属分类:图形图像处理(光照,映射..)

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

    0下载:
  2. KMP是一种快速字符串匹配算法,KMP算法的时间复杂度为O(m+n)。-KMP string matching algorithm is a fast, KMP algorithm' s time complexity is O (m+ n).
  3. 所属分类:图形图像处理(光照,映射..)

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

    0下载:
  2. 本代码是kmp算法,可以实现在文学名著中实现字符串的查找,并标记字符串的位置,统计字符串的个数-This code is kmp algorithm can achieve a string of literary classics in the search, and mark the location of the string, the number of statistical string
  3. 所属分类:数学计算/工程计算

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

    0下载:
  2. 经典kmp 算法源码 ,此源码采用c语言描述-kmp described in c
  3. 所属分类:数据结构常用算法

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

    0下载:
  2. 改进的KMP算法(数据结构),可以输出nextval值,判断子串与主串是否匹配,匹配的话可以输出在哪里开始匹配-Improved KMP algorithm (data structure), nextval values can be output to determine whether the substring matches with the main string, then you can match the output
  3. 所属分类:数据结构常用算法

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

    0下载:
  2. KMP算法,最快的字符串匹配算法,在子串查询中扮演重要角色-KMP algorithm, the fastest string matching algorithm, in the child play an important role in the query string
  3. 所属分类:数据结构常用算法

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

    0下载:
  2. KMP 算法 数据结构中的经典算法 源代码-Data structures, algorithms, code KMP
  3. 所属分类:数据结构常用算法

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

    0下载:
  2. 实现KMP算法,输入三组主串S和模式串P,输出模式串的Next(j)函数值,以及该P在S中的位置的定位函数值,即序号值。其中S的长度为15~25,P的长度为5~8。-KMP algorithm implementation, the input string S and the three main pattern string P, the output mode string Next (j) function values, an
  3. 所属分类:其他小程序

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

    0下载:
  2. 字符串模式匹配的kmp算法,虽然效率很差,但它是跳跃算法的开山之作,故倍受推崇-Kmp string pattern matching algorithms, although the efficiency is poor, but it is the pioneer of the jump for algorithms, it is highly respected
  3. 所属分类:数据结构常用算法

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

    1下载:
  2. KMP算法实现的小程序,用于实现字符串匹配的经典算法-KMP algorithm a small program used to implement the classical string matching algorithms
  3. 所属分类:数值算法/人工智能

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

    0下载:
  2. 字符串的快速匹配问题,输入输出字符串,用KMP算法解决-Fast string matching problem, input and output strings, with the KMP Algorithm
  3. 所属分类:其他小程序

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

    0下载:
  2. 一个KMP算法的简单实现,实现字符串的匹配-KMP algorithm
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-20
    • 文件大小:155648
    • 提供者:mushan
  1. my_kmp_matching

    0下载:
  2. KMP算法的Verilog HDL实现,模式串从模块的外部输入,计算next函数,然后进行KMP匹配。有仿真。环境为Quartus II 8.0 Web Edition。-Verilog HDL implementation KMP algorithm, pattern string from the module' s external input, calculate next function, then KMP match
  3. 所属分类:VHDL编程

    • 发布日期:2024-05-20
    • 文件大小:1452032
    • 提供者:曹亚良
  1. KMP-algorithm

    0下载:
  2. KMP算法是一种用于字符串匹配的算法,这个算法的高效之处在于当在某个位置匹配不成功的时候可以根据之前的匹配结果从模式字符串的另一个位置开始,而不必从头开始匹配字符串-KMP string pattern matching algorithm
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-20
    • 文件大小:10240
    • 提供者:name
« 1 2 3 4 5 67 8 9 10 11 ... 25 »

源码中国 www.ymcn.org