CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 字符串匹配

搜索资源列表

  1. Hw09_4

    0下载:
  2. 利用MFC对话框来实现 字符串匹配等算法,算法简洁、优化 -String matching algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-05-12
    • 文件大小:2707220
    • 提供者:yunzhen wang
  1. algorithm

    0下载:
  2. 包括选择排序、冒泡排序、顺序查找、字符串匹配、合并排序-Including the selection sort, bubble sort, sequential search, string matching, merge sort
  3. 所属分类:Data structs

    • 发布日期:2017-06-10
    • 文件大小:17859542
    • 提供者:张晓彤
  1. zifuchuan

    0下载:
  2. 此小项目是我们用来竞赛的,是用来处理字符串的,进行字符串匹配的。-This small project is that we used to race, is used to process the string, the string match.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-01
    • 文件大小:547011
    • 提供者:王衎
  1. 004

    0下载:
  2. 用于字符串匹配的KMP算法,由于其O(m+n)的时间复杂度,至今仍被广泛应用。-KMP string matching algorithm is used, due to its O (m+ n) time complexity, is still widely used.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1060
    • 提供者:Snake
  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. 所属分类:Special Effects

    • 发布日期:2017-04-07
    • 文件大小:709
    • 提供者:mashiwei
  1. KMP

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

    • 发布日期:2017-04-16
    • 文件大小:8922
    • 提供者:ticktan
  1. c

    0下载:
  2. 使用汇编语言编写的简易字符串匹配,输入字符串,并输入关键字与之匹配-Written in assembly language using simple string matching, the input string, and enter the keyword to match
  3. 所属分类:assembly language

    • 发布日期:2017-04-07
    • 文件大小:1702
    • 提供者:沉默禁断
  1. zifuchuan

    0下载:
  2. Java 字符串与文本相关实例源码,比如不可变字符串与限定字符串、字符串的比较、提取子串、修改缓冲区中的字符串、判断回文串、正则表达式、字符串匹配、正则表达式语法等,还一一些比如用于比较两个变量是否引用同一个对象、equals用于比较两个字符串的内容是否相同、忽略大小写、判断是否以某个字符串开始或结束、根据字典排序比较两个字符串、删除字符串中的空格、将字符串转换成小写或大写形式等在代码中都有所体现…… -Instance of Java source code associated with
  3. 所属分类:Java Develop

    • 发布日期:2017-04-16
    • 文件大小:19460
    • 提供者:鬼舞
  1. text_match

    0下载:
  2. 常用字符串匹配算法的C语言实现,KMP、KR、BM等-String matching algorithms used C language, KMP, KR, BM, etc.
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:3589
    • 提供者:孟jc
  1. AC-automation

    0下载:
  2. 建立AC自动机,实现快速字符串匹配的模板。 高效建立trie,并且构造fail指针。 在敏感词过滤和杀毒方面有广泛应用-AC automatic machine set up, fast string matching template. Efficient establishment of trie, and the structure fail pointer. In the sensitive word filtering and anti-virus has a wi
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-11
    • 文件大小:1185
    • 提供者:gw
  1. KMP

    0下载:
  2. KMP算法实现的小程序,用于实现字符串匹配的经典算法-KMP algorithm a small program used to implement the classical string matching algorithms
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-10
    • 文件大小:598
    • 提供者:linchen
  1. string

    0下载:
  2. 字符串匹配算法研究 字符串匹配 前缀 后缀 kmp算法 后缀树-with internet booming, the amount of information gets more and more. How to find the target information in such tramendous data is the key in web searching develepment. In this end the string matching algorithm takes
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:16605
    • 提供者:neufox
  1. KMP-algorithm

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

    • 发布日期:2017-04-01
    • 文件大小:10018
    • 提供者:name
  1. libbitap

    0下载:
  2. 这是多模式字符串匹配WuManber算法的经典源码-A clean implementation of Sun Wu and Udi Manber s bitap algorithm.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-30
    • 文件大小:6623
    • 提供者:
  1. KMPpp

    0下载:
  2. 利用KMP算法,忽略大小写的字符串匹配 查找子字串在父字串的位置-Use of KMP algorithm, case-insensitive substring string matching to find the location of the parent string
  3. 所属分类:Algorithm

    • 发布日期:2017-04-17
    • 文件大小:200568
    • 提供者:
  1. KMPNew

    0下载:
  2. 该算法是实现字符串匹配, 子串匹配只考虑最左匹配情况,即只需要从左到右进行字串匹配的情况。比如: 在字符串"abababab"中,采用最左匹配子串"aba",可以匹配2个"aba"字串。如果 匹配出从左到右位置2开始的"aba",则不是最左匹配,且只能匹配出1个"aba"字串-The algorithm is for string matching, substring matching only consider the matching of the left, that is on
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-16
    • 文件大小:253569
    • 提供者:flogsea
  1. 1549

    0下载:
  2. 压缩包中有VC写的十进制转二进制程序,负数前移,多项式相乘程序,字符串匹配程序,遍历(非递归和递归)。能运行-VC compressed package written in binary decimal transfer, negative forward, polynomial multiplication process, the string matching procedure, traverse (non-recursive and recursive.) Can run
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-16
    • 文件大小:42742
    • 提供者:qinchuan
  1. sy3

    0下载:
  2. 微机原理实验,字符串匹配实验,非常适合初学者使用-Computer principle experiment, string matching experiments, very suitable for beginners to use ~ ~
  3. 所属分类:assembly language

    • 发布日期:2017-04-12
    • 文件大小:984
    • 提供者:Andrew
  1. match

    0下载:
  2. 字符串匹配,使用有限状态自动机原理实现,并解释转义字符 \\ -String matching, the use of finite state automata theory to achieve, and explain the escape character ' \ \'
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-03
    • 文件大小:1990
    • 提供者:北极冰
  1. zbox

    0下载:
  2. 字符串匹配算法zbox,快速求子串在模式串中出现的次数-zbox algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:764
    • 提供者:樊斐佳
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 28 »
搜珍网 www.dssz.com