CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - 快速匹配算法

搜索资源列表

  1. Patterns_src

    0下载:
  2. 快速的基于LZW算法的匹配源码,用到了二分法搜索算法。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:33438
    • 提供者:lichunlin
  1. KMP

    0下载:
  2. 著名的KMP算法 实现快速字符串匹配 其中还包括失效函数的实现
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:841
    • 提供者:施欢欣
  1. bm_algorithm

    0下载:
  2. 一种比较理想,快速的字符串匹配算法-BM算法,匹配性能较优。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2000
    • 提供者:malota
  1. bmhs_algorithm

    0下载:
  2. 一种比较理想,快速的字符串匹配算法-BMHS算法,它与BM算法的性能相当,但是算法复杂度较低。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1471
    • 提供者:malota
  1. 数据结构的C++描述

    1下载:
  2. 目 录 译者序 前言 第一部分 预备知识 第1章 C++程序设计 1 1.1 引言 1 1.2 函数与参数 2 1.2.1 传值参数 2 1.2.2 模板函数 3 1.2.3 引用参数 3 1.2.4 常量引用参数 4 1.2.5 返回值 4 1.2.6 递归函数 5 1.3 动态存储分配
  3. 所属分类:数据结构常用算法

    • 发布日期:2009-10-17
    • 文件大小:5125525
    • 提供者:gufeng20081010
  1. job.tar

    0下载:
  2. 这是一个字符串快速匹配的算法KMP算法,大家可以通过此算法的学习来提高自己的算法水平-This is a fast string matching algorithm KMP algorithm, we can learn through this algorithm to improve the level of their algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:5802
    • 提供者:chenkang
  1. acbm

    0下载:
  2. acbm算法,高效快速的多字符匹配算法。在很多工程中有很大的用处-acbm algorithm, the number of characters in rapid and efficient matching algorithm. In many projects there are a lot of useful
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:3778
    • 提供者:杨书童
  1. kmp

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

    • 发布日期:2017-03-30
    • 文件大小:519
    • 提供者:xin
  1. string

    0下载:
  2. 实现朴素模式匹配算法和KMP快速模式匹配算法。 Index(S,T,pos) 函数返回值为串T在串S的第pos个字符后第一次出现的位置。-Achieve simple pattern matching algorithm and KMP pattern matching algorithm. Index (S, T, pos) function returns the string value of S T in the string after the first pos characte
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:175706
    • 提供者:Bill
  1. suanfa

    1下载:
  2. 数据结构基本算法演示程序实现: 1、实现KMP模式匹配算法、哈夫曼编码算法、由遍历序列恢复二叉树、Prim算法、Kruskal算法、Floyd算法、Dijkstra算法、拓扑排序、关键路径算法、二叉排序树生成算法(含平衡化)、哈希表生成及哈希查找算法、希尔排序、快速排序、堆排序、归并排序、基数排序。(四则表达式计算、矩阵运算、有向图的强连通分量求解) 2、算法中的链表结构和数组结构的基本操作要求单独函数实现(同组内算法要求共享使用)。 要求数据结构基本算法演示程序具有菜单选择,算法要
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:20855
    • 提供者:dark
  1. zbox

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

    • 发布日期:2017-04-10
    • 文件大小:764
    • 提供者:樊斐佳
  1. Lying-data-structure9

    0下载:
  2.  《大话数据结构》主要内容包含:数据结构介绍、算法推导大O阶的方法;顺序结构与链式结构差异、栈与队列的应用;串的朴素模式匹配、KMP模式匹配算法;二叉树前中后序遍历、赫夫曼树及应用;图的深度、广度遍历;最小生成树两种算法、最短路径两种算法;拓扑排序与关键路径算法;折半查找、插值查找、斐波那契查找等静态查找;稠密索引、分块索引、倒排索引等索引技术;冒泡、选择、插入等简单排序;希尔、堆、归并、快速等改进排序-" Westward the data structure," the m
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:1531772
    • 提供者:陈雨
  1. bm

    0下载:
  2. BM算法,通过BM算法实现字符串匹配,快速匹配字符串-BM algorithm, through the BM string matching algorithm fast string matching
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:1343
    • 提供者:邱士永
  1. strMatch

    0下载:
  2. 字节流的快速模式匹配算法, 具有比较详细的注释, 供开发时参考. 速度高于 strstr, 且支持字节流. -Byte stream of fast pattern matching algorithms, with detailed notes for reference when developers faster than strstr, support byte stream.
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:3205
    • 提供者:zzz654321
  1. match-of-characters

    0下载:
  2. 用朴素模式匹配算法和快速模式匹配算法实现字符串的模式匹配为题,带有详细的运行说明。-With a simple pattern matching algorithm and fast pattern matching algorithm string pattern matching the title, with a detailed descr iption of the operation.
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:116427
    • 提供者:mafangyuan
  1. KMP

    0下载:
  2. 一个kmp算法,用于字符串匹配,可以快速匹配两个字符串,查找是否存在相同子串-A kmp algorithm for string matching, you can quickly match two strings, find the existence of the same substring
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:575
    • 提供者:邓子越
  1. AC_BM

    0下载:
  2. AC_BM算法源码,能够进行快速的匹配,主要核心思想是树的运用-AC BM algorithm source code, can be quickly matched, the main core idea is to use the tree
  3. 所属分类:Data structs

    • 发布日期:2017-05-04
    • 文件大小:6830
    • 提供者:lipeiting
搜珍网 www.dssz.com