搜索资源列表

  1. 三种模式匹配算法的比较

    0下载:
  2. Las Vegas,KMP,Mentro carlo这三种模式匹配算法的原代码,对其进行了时间及出错率的比较-Las Vegas, KMP, Mentro carlo three pattern matching algorithm of the original code, its time and the error rate comparison
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:14652
    • 提供者:lxr
  1. 模式匹配

    0下载:
  2. 用C语言编写的一个简单的数据结构算法.可实现括号的模式匹配.-C language of a simple data structure algorithms. Brackets can be realized pattern matching.
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:1324
    • 提供者:王安耀
  1. 改良快速模式匹配

    0下载:
  2. Knuth的快速模式匹配算法改良,可以匹配含通配符?和*的标准串-the rapid improvement of pattern matching algorithm can match with wildcards? * And the standard Series
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:7585
    • 提供者:林志伟
  1. KMP模式匹配(可以有通配符)

    0下载:
  2. 使用著名的KMP模式匹配算法进行字符串匹配,还可以有通配符-use of the famous KMP string matching algorithms can also be wildcards
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:7846
    • 提供者:张远洋
  1. 模式匹配小算法(支持通配符)

    0下载:
  2. 由于项目需要,最近写了一个模式匹配算法,支持%(代表一个或者任意个字符),_(代表一个字符)通配符号,自己在vc6下测试通过.
  3. 所属分类:数值算法/人工智能

    • 发布日期:2010-09-06
    • 文件大小:844
    • 提供者:tjltail
  1. 一种多尺度的时间序列相似模式匹配算法

    0下载:
  2. 提出一种多尺度的时间序列相似模式匹配算法.该算法用离散小波变换对时间序列进行多分辨分析,在多尺度上提取序列的形状特征.然后在不同的尺度上找出相似的序列和子序列模式.该算法可以匹配不同长度的序列,并能支持垂直平移变换和幅度伸缩变换.
  3. 所属分类:其它文档

  1. kuaisuzifuchuan

    0下载:
  2. 快速模式匹配算法-rapid pattern matching algorithm
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-08
    • 文件大小:99328
    • 提供者:孙好
  1. 改良快速模式匹配

    0下载:
  2. Knuth的快速模式匹配算法改良,可以匹配含通配符?和*的标准串-the rapid improvement of pattern matching algorithm can match with wildcards?* And the standard Series
  3. 所属分类:其他小程序

    • 发布日期:2024-05-08
    • 文件大小:7168
    • 提供者:林志伟
  1. KMP模式匹配(可以有通配符)

    0下载:
  2. 使用著名的KMP模式匹配算法进行字符串匹配,还可以有通配符-use of the famous KMP string matching algorithms can also be wildcards
  3. 所属分类:其他小程序

    • 发布日期:2024-05-08
    • 文件大小:891904
    • 提供者:张远洋
  1. stringmatch

    0下载:
  2. 字符串的模式匹配(KMP算法)-string pattern matching (KMP algorithm)
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-08
    • 文件大小:11264
    • 提供者:谭悦
  1. KMP匹配算法

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

    • 发布日期:2024-05-08
    • 文件大小:3072
    • 提供者:卢孝飞
  1. Patten Match

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

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

    • 发布日期:2024-05-08
    • 文件大小:318464
    • 提供者:孙江萍
  1. 三种模式匹配算法的比较

    0下载:
  2. Las Vegas,KMP,Mentro carlo这三种模式匹配算法的原代码,对其进行了时间及出错率的比较-Las Vegas, KMP, Mentro carlo three pattern matching algorithm of the original code, its time and the error rate comparison
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-08
    • 文件大小:332800
    • 提供者:lxr
  1. 字符串匹配算法

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

    • 发布日期:2024-05-08
    • 文件大小:13312
    • 提供者:谢树扬
  1. 模式匹配

    0下载:
  2. 用C语言编写的一个简单的数据结构算法.可实现括号的模式匹配.-C language of a simple data structure algorithms. Brackets can be realized pattern matching.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-08
    • 文件大小:1024
    • 提供者:王安耀
  1. 简单的字符识别

    1下载:
  2. 一个简单的字符识别程序,根据字体的结构识别,而不是通常所用的模式匹配,神经网络识别,开辟了新的思路,希望对图像识别感兴趣的有所帮助。VC++开发-a simple character identification procedures, according to the font structure identification, but not usually used in pattern matching, neural netw
  3. 所属分类:图形/文字识别

    • 发布日期:2024-05-08
    • 文件大小:1911808
    • 提供者:guo
  1. 模式匹配MFC_jwj

    0下载:
  2. 此程序用mfc完成查找替换功能,在编辑框中输入一串字符,然后输入你要查询的字符串,之后输入你要替换的字符串(替换查询的内容),结果显示在最后的编辑框中-mfc use this procedure to complete the replacement search function, the edit box input string of characters then enter your inquiries to the str
  3. 所属分类:Windows编程

    • 发布日期:2024-05-08
    • 文件大小:1934336
    • 提供者:蒋文靖
  1. kmpEx

    0下载:
  2. KMP算法是字符串模式匹配算法, 解决DBCS字符集的问题。-KMP algorithm is a string pattern matching algorithms, DBCS characters to solve the problem,.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-08
    • 文件大小:1024
    • 提供者:黄建雄
  1. stringprocess

    0下载:
  2. 字符串模式匹配,查找子串加以代替,有两种模式匹配算法-string pattern matching, substring search to be replaced, there are two types of pattern matching algorithm
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-08
    • 文件大小:176128
    • 提供者:苗建新
« 12 3 4 5 6 7 8 9 10 ... 35 »

源码中国 www.ymcn.org