CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - grammar recognition

搜索资源列表

  1. 简单优先算法

    0下载:
  2. 本程序主要用于实现自底向上分析技术中的简单优先分析算法,简单文法可由键盘输入,实现功能包括:简单优先文法的判别,优先关系矩阵的输出,句子的识别等-the procedures used to achieve a bottom-up analysis of a simple priority analysis algorithms, simple grammar could be the keyboard input to achieve features include : simple gra
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:3488
    • 提供者:米子
  1. wenfashibie

    0下载:
  2. 文法识别 文法识别 文法识别-grammar recognition gra mmar recognition gra mmar recognition grammar grammar Recognition Recognition
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:118646
    • 提供者:胡志明
  1. antlr-3.0b5.tar

    0下载:
  2. ANTLR(ANother Tool for Language Recognition)它是这样的一种工具,它可以接受词文法语言描述,并能产生识别这些语言的语句的程序。作为翻译程序的一部分,你可以使用简单的操作符和动作来参数化你的文法,使之告诉ANTLR怎样去创建抽象语法树(AST)和怎样产生输出。ANTLR知道怎样去生成识别程序,语言包括Java,C++,C#. -distributions (ANother Tool for Language Recognit ion) it is a to
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:2650675
    • 提供者:guid
  1. jianyiyufafenxiqi

    0下载:
  2. LL(1)语法分析程序,(1)对输入文法,它能判断是否为LL(1)文法,若是,则转(2);否则报错并终止; (2)输入已知文法,由程序自动生成它的LL(1)分析表; (3)对于给定的输入串,应能判断识别该串是否为给定文法的句型 -LL (1) syntax analysis program, (1) on the importation of grammar, it can determine whether to LL (1) grammar, If so, then swit
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:127217
    • 提供者:wanghe
  1. bianyizlh

    0下载:
  2. 自动生成一个LL(1)文法。对输入文法,由程序自动生成它的LL(1)分析表;对于给定的输入串,应能判断识别该串是否为给定文法的句型-LL (1) grammar. On the importation of grammar, automatically generated from the LL (1) Analysis Table; For a given input string, Recognition should be able to judge whether the series
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:72942
    • 提供者:zlhhlz
  1. lr

    0下载:
  2. 构造LR(1)分析程序,利用它进行语法分析,判断给出的符号串是否为该文法识别的句子,了解LR(K)分析方法是严格的从左向右扫描,和自底向上的语法分析方法。-tectonic LR (1) analysis procedure, and use it for syntax analysis, judgment, given the string of symbols to whether the sentence grammar recognition, understanding LR (K)
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:11733
    • 提供者:
  1. SpeechPLib(2004.11)

    0下载:
  2. 基于微软speech sdk 的中文语音识别-Chinese Recognition based on MIcrosoft SDK
  3. 所属分类:Speech/Voice recognition/combine

    • 发布日期:2017-03-26
    • 文件大小:372353
    • 提供者:maxiang
  1. 根据某一LL(1)文法编制调试预测分析程序

    0下载:
  2. 根据某一LL(1)文法编制调试预测分析程序,以便对任意输入的符号串进行分析。 本次实验的LL(1)文法为表达式文法: E→E+T | T T→T*F | F F→i | (E) 编写识别表达式文法的合法句子的预测分析程序,对输入的任意符号串,给出分析过程及分析结果。分析过程要求输出步骤、分析栈、剩余输入串和所用产生式。如果该符号串不是表达式文法的合法句子,要给出尽量详细的错误提示。-According to an LL (1) grammar analysis of
  3. 所属分类:SCSI/ASPI

    • 发布日期:2017-03-22
    • 文件大小:7224
    • 提供者:suhuhu
  1. VioceRecognition

    0下载:
  2. 使用科大讯飞的语音识别和语音合成引擎作为基础,开发的适合SP的一套语音识别应用程序,可通过简单配置应用于现有的IVR业务中。主要文件简单说明:asr.c 系统初始化,入口点asrch.c 系统核心处理单元DynGra.c 动态语法生成tts.c 语音合成eventq.c 事件队列asrtimer.c 计时器iblock.c 内存管理.-The use of Science and Technology Institute of China inquiry flying speech recogn
  3. 所属分类:Speech/Voice recognition/combine

    • 发布日期:2017-03-29
    • 文件大小:199090
    • 提供者:至诚
  1. code

    0下载:
  2. jaava voice browser The World Wide Web Consortium s Voice Browser Working Group is defining several markup languages for applications supporting speech input and output. These markup languages will enable speech applications across a range of hardwar
  3. 所属分类:Browser Client

    • 发布日期:2017-03-29
    • 文件大小:823345
    • 提供者:kumar
  1. Compiler

    0下载:
  2. 编译课上做的小程序,用四种分析方法分别实现(LL1,算符优先,递归下降,简单词法分析) 完成对正则文法所描述的Pascal语言子集单词符号的词法分析程序。 <标识符>→字母︱ <标识符>字母︱ <标识符>数字 <无符号整数>→数字︱ <无符号整数>数字 <单字符分界符> →+ ︱- ︱* ︱ ︱(︱) <双字符分界符>→<大于>=︱<小于>=︱<小于&g
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:483490
    • 提供者:丁丁
  1. DFAforanystring

    0下载:
  2. DFA的实现。 将文法作为输入,从而实现对任意文法的识别-DFA implementation. The grammar as input, in order to achieve recognition for any grammar
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:7546
    • 提供者:此阁
  1. DynamicGrammar

    0下载:
  2. 识别语法的一个程序,适合研究语音识别语法的人参考。-Syntax of a program recognition, speech recognition grammar for research reference.
  3. 所属分类:Speech/Voice recognition/combine

    • 发布日期:2017-04-16
    • 文件大小:53100
    • 提供者:cp
  1. JavaGrammar-

    3下载:
  2. Java语言子集语法、语义分析器 实现的Java语言子集文法 <Sw>  while(Er)S <Er>  Vc < Vc | Vc > Vc <S>  标识符= Ex // 标识符使用词法分析识别结果 <Vc>  标识符 | 整常数 // 标识符、整场数使用词法分析识别结果 <Ex>  Vc P Ex | Vc
  3. 所属分类:Compiler program

    • 发布日期:2016-06-10
    • 文件大小:805888
    • 提供者:genganpeng
  1. SLR(1)

    0下载:
  2. 编写识别表达式拓广文法的合法句子的SLR(1)分析程序,对输入的任意符号串,给出分析过程及分析结果。分析过程要求输出步骤、状态栈、符号栈、输入串和语法动作。如果该符号串不是表达式文法的合法句子,要给出尽量详细的错误提示。-Write a recognition of the legitimate expression of broadening the sentence grammar SLR (1) analysis program , for any input string of symb
  3. 所属分类:Data structs

    • 发布日期:2017-03-25
    • 文件大小:309860
    • 提供者:suhuhu
  1. shiyan2

    0下载:
  2. 编译原理实验:程序段的单词识别。:给定某种语言的语法规则,生成识别该语言单词的确定的有穷自动机(DFA),然后通过该DFA对该语言的程序段进行单词识别,给出识别的单词序列,每个单词用二元式表示-Compiler principle experiment: block word recognition. : Given a language grammar rules to generate finite automata (DFA) identify the word of the langua
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:170699
    • 提供者:王骢
  1. LR1

    0下载:
  2. 构造LR(1)分析程序,利用它进行语法分析,判断给出的符号串是否为该文法识别的句子,了解LR(K)分析方法是严格的从左向右扫描,和自底向上的语法分析方法。-Construct LR (1) analytical procedures, and use it to parse sentences of whether the judgment given string of symbols for grammar recognition LR (K) analysis method is stri
  3. 所属分类:Compiler program

    • 发布日期:2017-11-20
    • 文件大小:35719
    • 提供者:孙辰
  1. Test

    0下载:
  2. 此代码实现了算符优先文法分析器,实现对整数加减乘除运算表达式的分析和处理。 1.扫描程序,将任何一种整数运算表达式(无变量,操作数为正整数,允许加减乘除四种运算,允许使用括号和多层括号)识别为单词,并能发现单词的拼写错误 2.自底向上分析程序,在栈上实现对单词token串的自底向上分析 3. 根据算符优先文法的分析步骤,展示分析栈、token串的状态变化、相关量的优先级比较(算符优先分析表)结果输出 、判断当前是否进行规约或移进操作、(若须规约)显示当前应规约的串 4.展示语法树
  3. 所属分类:Java Develop

    • 发布日期:2017-04-26
    • 文件大小:13156
    • 提供者:miao
  1. syntactic-analyzer

    0下载:
  2. 用Yacc编写一个语法分析程序,使之与词法分析器结合,能够根据语言的上下文无关文法,识别输入的单词序列是否文法的句子。-With Yacc write a parser, so that combined with the lexical analyzer that depending on the context-free grammar of language, whether the input word sequence recognition grammar of the senten
  3. 所属分类:Compiler program

    • 发布日期:2017-04-28
    • 文件大小:321729
    • 提供者:xiaowang
  1. Windows_aitalk_1151_591948ca

    0下载:
  2. 实现语音识别,输入一段音频或者从mic读入,需要编写bnf语法,根据语法识别。(To achieve voice recognition, enter a piece of audio or read from the mic, you need to write bnf syntax, according to grammar recognition.)
  3. 所属分类:Windows编程

    • 发布日期:2017-12-29
    • 文件大小:11661312
    • 提供者:blacklong
« 12 »
搜珍网 www.dssz.com