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

搜索资源列表

  1. whale-0.3.2-src.zip

    0下载:
  2. Complete support for EBNF notation; Object-oriented parser design; C++ output; Deterministic bottom-up "shift-reduce" parsing; SLR(1), LALR(1) and LR(1) table construction methods; Automatic parse tree creation; Possibility to output pars
  3. 所属分类:编译器/词法分析

    • 发布日期:
    • 文件大小:220189
    • 提供者:
  1. 编译原理及实践

    1下载:
  2. 目      录 译者序 前言 第1章   概论 1 1.1   为什么要用编译器 2 1.2   与编译器相关的程序 3 1.3   翻译步骤 5 1.4   编译器中的主要数据结构 8 1.5   编译器结构中的其他问题 10 1.6 &
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-04-25
    • 文件大小:7612048
    • 提供者:wesong
  1. cifafenxiqi(new)

    0下载:
  2. 词法分析器制作与应用 设计思想 (1)程序主体结构部分: 说明部分 %% 规则部分 %% 辅助程序部分 (2)主体结构的说明 在这里说明部分告诉我们使用的LETTER,DIGIT, IDENT(标识符,通常定义为字母开头的字母数字串)和STR(字符串常量,通常定义为双引号括起来的一串字符)是什么意思.这部分也可以包含一些初始化代码.例如用#include来使用标准的头文件和前向说明(forward ,references).这些代码应该再标记\"%{\"和\"
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:4846
    • 提供者:黄启龙
  1. grammatica-0[1].4.tar

    0下载:
  2. Grammatica是一个C#和Java的语法分析程序生成器(编译器的编译器)。它可以用LL(k)语法创建可读的和带有注释的源代码。它也支持创建一个运行时语法分析器,带不生成源代码。语法产生式用EBNF描述,使用规则表达式的符号-Grammatica is a C# and Java syntax analysis program generator (compiler compiler). It can be used LL (k) to create readable syntax and
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:494767
    • 提供者:侯为
  1. 递归下降分析器

    0下载:
  2. 目的】 使用递归子程序法设计一个语法分析程序,理解自顶向下分析方法的原理,掌握手工编写语法分析程序的方法。 【要求】 1、使用递归下降分析算法分析表达式文法: exp ::= exp addop term | term addop ::= + | - term ::= term mulop factor | factor mulop ::= * | / factor ::= (exp) | number 其中number可以是多位的十进制数字串(整数即可),因此这里还需要一个小的词法分析器来得到
  3. 所属分类:编译器/词法分析

  1. whale-0.3.2-src

    0下载:
  2. Complete support for EBNF notation; Object-oriented parser design; C++ output; Deterministic bottom-up "shift-reduce" parsing; SLR(1), LALR(1) and LR(1) table construction methods; Automatic parse tree creation; Possibility to output parse tree in XM
  3. 所属分类:Compiler program

    • 发布日期:2017-11-09
    • 文件大小:220502
    • 提供者:none
  1. 1111

    0下载:
  2. 的语法非常容易使用EBNF进行重写,所以很适合使用递归下降的方法来分析-The syntax is very easy to use EBNF to rewrite, so it is suitable for the decline in the use of recursive methods to analyze
  3. 所属分类:Compiler program

    • 发布日期:2017-04-14
    • 文件大小:4177
    • 提供者:nihao
  1. tiny-parse

    1下载:
  2. Syntax of TINY+ An EBNF grammar for TINY+ is as follows (Strings in bold are terminals): 1. program -> declarations stmt-sequence 2. declarations -> decl declarations |² 3. decl -> type-specifi er varlist 4. type-speci
  3. 所属分类:Compiler program

    • 发布日期:2014-12-18
    • 文件大小:1269666
    • 提供者:gavinfeng
  1. b

    0下载:
  2. 递归下降分析器的设计 首先将文法改写成EBNF形式,根据递归下降分析法基本思想编写程序。 -The design of recursive descent parser rewrite first EBNF grammar forms, according to the basic idea recursive descent analysis programming.
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-04
    • 文件大小:55639
    • 提供者:卜丽娜
  1. MDA

    0下载:
  2. 根据MDA的思想,给出了用于统一描述数据模型的数据词典的逻辑结构,以数据词典的方式在元模型层上对数据模型进行统一描述,在数据词典的基础上分析了异构数据模型之间的数据映射关系。采用EBNF范式对描述映射关系的语法进行形式化定义和描述,同时给出映射关系的相关语义说明。在研究的基础上实现了数据映射功能,并投入实际应用,文中给出数据映射的应用实例。-This article present a kind of Data Mapping techenology based MDA,descr ipt th
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-04
    • 文件大小:631066
    • 提供者:陈中
  1. first.pl

    0下载:
  2. 能根据 EBNF 生成first集的perl脚本-EBNF first set according to the perl scr ipt generated
  3. 所属分类:Java Develop

    • 发布日期:2017-04-05
    • 文件大小:1096
    • 提供者:hanyang
  1. cifa

    0下载:
  2. 词法分析器c语言实现的源代码,实验语言问ebnf- Lexical analyzer lexical analyzer c source code language implementation of the source code, and the experimental language ebnf asked
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:1544
    • 提供者:blue
搜珍网 www.dssz.com