搜索资源列表

  1. chuanpipei

    0下载:
  2. 使用BM、Horspool,QS,RK等算法实现串匹配,文本串随机生成,输入模式串,输出匹配位置以及各个算法消耗时间!-Using the BM, Horspool, QS, RK and other string matching algorithm, the text string randomly generated string input mode, the output of each algorithm for match
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-21
    • 文件大小:2048
    • 提供者:xzh
  1. KMPNew

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

    • 发布日期:2024-05-21
    • 文件大小:253952
    • 提供者:flogsea
  1. qam

    0下载:
  2. 一、 本程序采用16QAM调制方式,对一串2进制信源进行调制,用升余弦滚降函数进行基带调制,再调到高频信道;在信道上加入高斯白噪声,运用匹配滤波器解调,画出解调星座图,运用最小欧氏距离译码判决,计算误比特率。-First, the program uses 16QAM modulation, the source of a string of two binary modulation, with the Raised Cosine m
  3. 所属分类:matlab例程

    • 发布日期:2024-05-21
    • 文件大小:10240
    • 提供者:xin
  1. kmp

    0下载:
  2. 串匹配问题。在主串中找出与模式串匹配的字符开始位置即下标。-String matching problem. In the main string and pattern matching to find the character position that subscr ipt.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-21
    • 文件大小:336896
    • 提供者:韩娇
  1. syzdcl

    0下载:
  2. 第十三章 排序 第十四章 串匹配 第十五章 图论 第十六章 组合优化 第十七章 计算几何 -parallel computing
  3. 所属分类:并行运算

    • 发布日期:2024-05-21
    • 文件大小:1146880
    • 提供者:andy
  1. PATTree

    0下载:
  2. 数据结构中PAT树的实现,包括树节点的插入、删除、查找和遍历。PAT tree 在字符串子串匹配上有这非常优异的表现,这使得它经常成为一种高效的全文检索算法,在自然语言处理领域也有广泛的应用。-PAT tree data structure, including the insertion of the tree node, delete, search, and traversal. PAT tree in the string su
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-21
    • 文件大小:158720
    • 提供者:buaa_sheng
  1. LL1-cifa

    0下载:
  2. 这是编译原理中的一种算法,LL1词法分析算法,该算法可以用于特定规则的输入串匹配,个别的学校会将其作为相应课程设计的一部分。-This algorithm is a compiler theory the LL1 lexical analysis algorithm, the algorithm can be used for a specific rule input string matching, individual schoo
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:1024
    • 提供者:曲文集
  1. ac

    0下载:
  2. 简单实现ac算法,模式串匹配时,运用简单的数组实现。-Simple the ac algorithms, pattern matching, the use of a simple array.
  3. 所属分类:弱点检测代码

    • 发布日期:2024-05-21
    • 文件大小:1024
    • 提供者:山茶
  1. PatternDetection

    0下载:
  2. 如何实现基于特征串匹配的攻击检测系统原型系统-How to achieve feature-based matching string attack detection system prototype system
  3. 所属分类:Internet/网络编程

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

    0下载:
  2. KMP串匹配并行算法MPI 源程序 并行思想加快速度-KMP string matching algorithm MPI parallel thinking speed parallel source
  3. 所属分类:进程与线程

    • 发布日期:2024-05-21
    • 文件大小:4096
    • 提供者:袁旭炜
  1. stringmatch

    0下载:
  2. c++程序,对于输入的n个字符串进行串匹配,使用者可以输入查询字串,返回所有在任意位置有匹配字串的字符串。
  3. 所属分类:图形图象

    • 发布日期:2024-05-21
    • 文件大小:1024
    • 提供者:马坊镇
  1. stringmatch

    0下载:
  2. c++程序,对于输入的n个字符串进行串匹配,使用者可以输入查询字串,返回所有在任意位置有匹配字串的字符串。
  3. 所属分类:图形图象

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

    0下载:
  2. 串匹配KMP,里面有两种实现代码,一种是蛮力法,另一种是改进的。-KMP string matching, there are two kinds of implementation code, one kind is a brute force method, another kind is improved.
  3. 所属分类:软件工程

    • 发布日期:2024-05-21
    • 文件大小:1024
    • 提供者:baifuk
  1. 38.KMP-String-match-algorithm

    0下载:
  2. KMP 快速模式串匹配查找算法。 与一般的字符串匹配算法不同在于,匹配中某个字符不同时,并不是把指针退回原点,而是从第二个匹配点开始匹配。-KMP fast string match algorithm, difference to common match algorithm is not back to original point when fail in matching letters.
  3. 所属分类:其他小程序

    • 发布日期:2024-05-21
    • 文件大小:370688
    • 提供者:HY
  1. WuManber_String_match

    0下载:
  2. 多模式串匹配Wu-Manber算法的实现,算法效率高,代码比较规范。-Wu-Manber, Multiple Patterns Matching
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2024-05-21
    • 文件大小:283648
    • 提供者:
  1. lexical-analyzer

    0下载:
  2. 编译原理实验报告 实验一:词法分析器 实验目的: 实现TINY+语言的词法分析程序(扫描程序) 实验内容: 1、词法分析器输入输出 扫描程序的输入是源代码文件,输出是token串。 2、需要遵循“最长串匹配原则”,如匹配字符串‘:=’ 为赋值操作符,而不是冒号和等号两个操作符。 Token 以键值对 (Kind, Value)的形式表示。下面的符号表示不同的token类别(即Kind的取值) KEY
  3. 所属分类:系统编程

    • 发布日期:2024-05-21
    • 文件大小:2717696
    • 提供者:alfred artorius
  1. wu-manber

    0下载:
  2. 经典的模式串匹配算法,WM算法的简单实现-Classic simple pattern matching algorithm, WM algorithm
  3. 所属分类:Internet/网络编程

    • 发布日期:2024-05-21
    • 文件大小:7168
    • 提供者:田娟娟
  1. STM32F103RC 串口实验UART4

    0下载:
  2. 进行串口收发,及匹配两个串口手机做出处理(Serial transceiver, and matching two serial phones to handle)
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2024-05-21
    • 文件大小:1955840
    • 提供者:anjoe
  1. hipelife

    0下载:
  2. 两个Nokia研究人员写的W-CDMA的仿真过程的整个代码,C code 包含信道编码,交织,速率匹配,调制,扩频,信道模型()
  3. 所属分类:串口编程

    • 发布日期:2024-05-21
    • 文件大小:60416
    • 提供者:tupli
  1. 3534743

    0下载:
  2. 摘要<扩频通信系统中数字匹配滤波器的实现及其捕获性能分析>设计了一种采用VH1)L语言实现的应用于扩颇通信摘获()
  3. 所属分类:串口编程

    • 发布日期:2024-05-21
    • 文件大小:135168
    • 提供者:bzjq%2540887908
« 1 2 3 4 56 7 8 9 10 ... 19 »

源码中国 www.ymcn.org