搜索资源列表

  1. Patten Match

    1下载:
  2. 基于NI公司的视频捕捉,模式匹配,图象跟踪软件,参加大学生挑战杯科技作品比赛.-the video capture, pattern matching, image tracking software, students participate Technology Challenge Cup competitions.
  3. 所属分类:多媒体

    • 发布日期:2008-10-13
    • 文件大小:304538
    • 提供者:廖降龙
  1. PatternMatching

    0下载:
  2. 这是计算机专业硕士生课程《算法设计与实现》中讲到的模式匹配算法的实现,并且将该算法与KMP算法进行了比较。-It was the professional degree programs, "Algorithm Design and Implementation" referred to the pattern matching algorithm implementation, and algorithm and
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:12202
    • 提供者:孙江萍
  1. 我收集的算法

    0下载:
  2. 我收集的一些算法 稀疏矩阵、基于数组的线性表、模式匹配、线性链表-I collected some sparse matrix algorithm, based on the linear array table, pattern matching, etc. Linear Chain
  3. 所属分类:Web服务器

    • 发布日期:2008-10-13
    • 文件大小:509229
    • 提供者:和尚
  1. 字符串匹配算法

    0下载:
  2. 一个简单的数据结构算法,字符串基本匹配算法与模式匹配算法的演示.-a simple data structure algorithms, the basic string matching algorithms and pattern matching algorithm demonstration.
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:13661
    • 提供者:谢树扬
  1. KMP匹配算法

    0下载:
  2. 由于简单模式匹配算法在一次字符比较失败后,简单的把模式串位置向前移动一个字符位置,这样就丢掉了前面字符匹配中得到的信息,效率差。所以就需要一种无回溯的算法来提高效率,这里使用KMP(Knuth-Morris-Pratt)算法。模式串前面的连续片断部分称“前缀模式”,前缀模式在模式串后部重复出现的情况可以用来避免重复进行已经做过的检查,这是KMP算法中的一个重要概念。-as simple pattern-matching algorith
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:3257
    • 提供者:卢孝飞
  1. 字符串匹配算法(KMP KR BM)

    0下载:
  2. 单模式字符串匹配算法里面最经典的算法,KMP算法,KR算法 和BM算法
  3. 所属分类:数值算法/人工智能

    • 发布日期:2010-09-06
    • 文件大小:2820
    • 提供者:tjltail
  1. 字符匹配判断

    0下载:
  2. 给出串字符串作为模式串然后再输入你所要找的字符串-given string string as a model input strings and then you have to find the string
  3. 所属分类:C#编程

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

    0下载:
  2. 字符串的模式匹配算法&一般的字符串匹配算法-string pattern matching algorithm & General string matching algorithm
  3. 所属分类:其他小程序

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

    0下载:
  2. 该程序设计采用了模式识别中的多种方法: 模板匹配§贝叶斯¥几何分类器×神经网络法等分类方法-The program designed with a variety of pattern recognition methods: template matching geometric § ¥ Bayesian classifier × neural network classification methods, etc.
  3. 所属分类:图形/文字识别

    • 发布日期:2024-05-20
    • 文件大小:3719168
    • 提供者:pengli
  1. yichuansuanfajiejuemoshipipei

    0下载:
  2. 遗传算法做图像的模式匹配,绝对经典,有源码看,有执行文件可以执行,下面有个执行环境的文件请先安装。-Genetic algorithm to do pattern matching images, absolute classics, and have look source, has the implementation of a document can be implemented, has the following month
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-20
    • 文件大小:10019840
    • 提供者:khong
  1. dtw

    0下载:
  2. 动态时间规正算法,用于语音识别,模式匹配等,在matlab环境下使用-Dynamic time warping algorithm for speech recognition, pattern matching, etc., in the matlab environment
  3. 所属分类:语音合成与识别

    • 发布日期:2024-05-20
    • 文件大小:2263040
    • 提供者:zzr
  1. jiyuyichuansuanfaPCBjiance

    0下载:
  2. 基于遗传算法的PCB板检测,把遗传算法和模式匹配结合起来了! -Based on Genetic Algorithm board PCB testing, the genetic algorithm and pattern matching combined with a!
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2024-05-20
    • 文件大小:2470912
    • 提供者:姜利
  1. My_BM4

    0下载:
  2. BM算法源代码,是用c++写的。适用于字符串的多模式匹配问题。-BM algorithm source code is written in c++. For a string of multi-pattern matching problem.
  3. 所属分类:数据结构常用算法

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

    0下载:
  2. KMP 模式匹配算法实例 C++源码 字符串查找-KMP pattern matching algorithm in C++ source code search string
  3. 所属分类:书籍源码

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:xilo
  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-20
    • 文件大小:610304
    • 提供者:宇烁
  1. ACBM

    0下载:
  2. acbm算法简介,在有限自动机的多模式匹配算法(DFSA算法)的基础上, 在算法中以连续跳跃的思想,给出了另一个更加有效的改进-About acbm algorithm, finite automaton in the multi-pattern matching algorithms (DFSA algorithm), based on a continuous jump in the algorithm to the idea, g
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:75776
    • 提供者:gd
  1. VQ-pattern-recognition

    0下载:
  2. VQ声纹识别算法和实验. 摘要:采用线性预测倒谱系数(1inear prediction cepstrum coefficient,LPCC)作为语音的特征参数,矢量量化(vector quantity,VQ)方法进行模式匹配,探讨声纹识别以实现身份认证,并对此识别方法进行了相关的实验.通过验证,这种方法可以区分不同的说话人,并且在做说话人辨认实验时可达到较高的识别率.-VQ pattern recognition algorith
  3. 所属分类:matlab例程

    • 发布日期:2024-05-20
    • 文件大小:171008
    • 提供者:海边贝壳
  1. BeiHang08_03

    0下载:
  2. 从string.in中读入数据,然后用户输入一个短字符串。要求查找string.in中和短字符串的所有匹配,输出行号、匹配字符串到string.out文件中。 //匹配时不区分大小写,并且可以有一个用中括号表示的模式匹配。如“aa[123]bb”,就是说aa1bb、aa2bb、aa3bb都算匹配。-Read data from string.in, then the user enters a short string. Find
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:488448
    • 提供者:王石
  1. Match

    0下载:
  2. opencv实现图片的模式匹配,可以实现多通道的图像匹配,不仅仅是通过灰度来实现的匹配。-opencv realized picture of pattern matching, multi-channel images can be matched, not only achieved by matching gray.
  3. 所属分类:OpenCV

    • 发布日期:2024-05-20
    • 文件大小:19772416
    • 提供者:fff
  1. AC_CUDA_Close

    0下载:
  2. 用cuda实现多模式匹配算法AC算法的并行运算(Multiple pattern matching algorithm to implement in cuda parallel computing of AC algorithm using cuda implement multiple pattern matching algorithm to AC algorithm of parallel computing)
  3. 所属分类:其他小程序

    • 发布日期:2024-05-20
    • 文件大小:585728
    • 提供者:Ankle breaker
« 1 2 34 5 6 7 8 9 10 ... 35 »

源码中国 www.ymcn.org