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

搜索资源列表

  1. ex1

    0下载:
  2. 《编译原理》表达式翻译器 构造一个中缀表达式到后缀表达式的翻译器,初步了解递归下降语法分析原理及语法制导翻译的过程。-Compiler theory expression translator construct an infix expression to postfix expression translator, a preliminary understanding of recursive descent parsing principle and Syntax translation
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:875
    • 提供者:陈依云
  1. Compilation-principle

    0下载:
  2. 编译原理是计算机专业的一门重要专业课,旨在介绍编译程序构造的一般原理和基本方法。内容包括语言和文法、词法分析、语法分析、语法制导翻译、中间代码生成、存储管理、代码优化和目标代码生成。-The compiler theory is an important professional courses, computer professional and is intended to introduce the general principles and basic methods of compi
  3. 所属分类:Compiler program

    • 发布日期:2017-11-11
    • 文件大小:2151772
    • 提供者:李丽
  1. TinyPlus

    0下载:
  2. 按照《编译原理与实践》课程,基于Tiny语言编译器改造的Tiny+编译器,实现了词法分析、语法分析、语法制导翻译、中间代码生成的步骤-According to class <Compiler onstruction>. Based on the the Tiny language compiler, it s a Tiny+ compiler, have achieved lexical analysis, parsing, syntax-directed translation,
  3. 所属分类:Compiler program

    • 发布日期:2017-11-10
    • 文件大小:253597
    • 提供者:
  1. IF_ELSE

    0下载:
  2. 引入属性文法和语法制导翻译方法的基本思想,对控制结构“IF-ELSE”条件语句进行词法分析,并在词法分析的基础上进行LR语法分析,并根据语法制导翻译方法将条件语句翻译成四元式中间代码形式,最后输出翻译后的四元式代码。-The basic idea of introducing the attribute grammar and syntax directed translation method, lexical analysis of the control structure of "IF-
  3. 所属分类:OS Develop

    • 发布日期:2017-11-14
    • 文件大小:1221994
    • 提供者:CourageK
  1. intermediate-code-generation

    0下载:
  2. 实现语法制导翻译功能,输出翻译后所得四元式序列-Syntax-translation output translation from quaternion type sequence
  3. 所属分类:Compiler program

    • 发布日期:2017-11-21
    • 文件大小:329946
    • 提供者:
  1. yuyifenxi

    0下载:
  2. 编译原理语义分析。通过语法制导或翻译模式生成中间代码。-Compilation principle of semantic analysis .Guided by grammar or translation mode to generate the intermediate code.
  3. 所属分类:CSharp

    • 发布日期:2017-11-22
    • 文件大小:37480
    • 提供者:STH
  1. s

    0下载:
  2. 语法制导翻译的表达式转换编译器源代码 一个关于编译原理课设的实验-Syntax-directed translation of expressions into a source code compiler compiler theory courses on experimental design
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-29
    • 文件大小:434388
    • 提供者:zouhang
  1. test3

    0下载:
  2. 接收以CPL编写的程序,对其进行词法分析、语法分析、语法制导翻译等,然后能够正确的执行程序。 -Receive a program written in CPL, its lexical analysis, parsing, syntax-directed translation, and then be able to correctly execute the program.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-04
    • 文件大小:305949
    • 提供者:Weipei Li
  1. C06

    0下载:
  2. 编译原理课程设计中实现了语法分析,词法分析,语法制导分析的mini C编译器-Principles of curriculum design compiler implements the syntax analysis, lexical analysis, syntax-analysis mini C compiler
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-27
    • 文件大小:9845038
    • 提供者:
  1. SyntaxAnalysis

    0下载:
  2. 对如下文法E -> E+T | E-T | T T -> T*F | T/F | F F -> id | (E) | num 用自底向上的语法制导翻译技术实现分析和翻译 -For the following grammar E-> E+T | ET | TT-> T* F | T/F | FF-> id | (E) | num implementation analysis and translation with the bottom-up
  3. 所属分类:Compiler program

    • 发布日期:2017-04-13
    • 文件大小:1902
    • 提供者:yingkkk
  1. compiler

    0下载:
  2. 类C语言编译器,基本上实现了主要功能的C语言语法,词法分析使用状态转移,语法使用LR(1)方法,自动生成ACTION和GOTO转移表。自顶向下的语法制导翻译,可以生成各种类型的表达式(包括布尔,算术,逻辑等等),循环中的while,选择中的if else 和if等,功能比较强大-Class C language compiler, basically realized the C language syntax, lexical analysis of the main features of
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:77530
    • 提供者:宋yucai
  1. postfix-notation

    0下载:
  2. 1、给出文法如下: G[E] E->T|E+T T->F|T*F F->i(E) 对应的转化为逆波兰式的语义动作如下: E-> E(1)op E(2) {E.CODE:= E(1).CODE||E(2).CODE||op} E->(E(1)) { E.CODE := E(1).CODE} E->id { E.CODE := id} 2、利用实验5中的算符优先分析算法,结合上面给出的语义动作实现逆波兰式的构造
  3. 所属分类:Compiler program

    • 发布日期:2017-04-12
    • 文件大小:1331
    • 提供者:忆昔
  1. Thompson转换正规式为NFA

    0下载:
  2. Thompson转换正规式为NFA程序是利用“语法制导翻译”方法,将正规式转换成图形的NFA的处理过程程序。
  3. 所属分类:其它

  1. fundamentals-of-compiling

    0下载:
  2. 本书深入讨论了编译器的设计原理,包含词法分析、语法分析、语法制导分析、类型检查、运行环境、中间代码生成等。-This book has discussed the design principle of the compiler in-depth, including lexical analysis, grammar analysis, grammar guidance analysis, type checking, operating environment, intermediate c
  3. 所属分类:software engineering

    • 发布日期:2017-06-19
    • 文件大小:27812864
    • 提供者:叶蔚
  1. 编译原理

    0下载:
  2. 编译原理是计算机专业的一门重要专业课,旨在介绍编译程序构造的一般原理和基本方法。内容包括语言和文法、词法分析、语法分析、语法制导翻译、中间代码生成、存储管理、代码优化和目标代码生成。 编译原理是计算机专业设置的一门重要的专业课程。(The principle of compilation is an important specialized course in computer science, which aims to introduce the general principles an
  3. 所属分类:其他

    • 发布日期:2017-12-24
    • 文件大小:2283520
    • 提供者:alili
  1. 程序设计语言编译原理

    0下载:
  2. 高级语言程序编译原理 内容包括词法分析、语法分析、属性文法与语法制导翻译、语义分析与中间代码产生、符号表与运行时存储空间组织、优化与目标代码生成、并行编译技术。(Compiler design principles)
  3. 所属分类:编译器/解释器

    • 发布日期:2017-12-31
    • 文件大小:8698880
    • 提供者:adds77
  1. 编译原理(龙书)+第二版

    0下载:
  2. 计算机专业的一门重要专业课,旨在介绍编译程序构造的一般原理和基本方法。内容包括语言和文法、词法分析、语法分析、语法制导翻译、中间代码生成、存储管理、代码优化和目标代码生成。(An important professional course of computer science, the purpose of this paper is to introduce the general principles and basic methods of compiler construction.
  3. 所属分类:编译器/解释器

    • 发布日期:2018-01-01
    • 文件大小:25138176
    • 提供者:低调丶BM
  1. 编译原理中文版

    0下载:
  2. 编译原理是计算机专业的一门重要专业课,旨在介绍编译程序构造的一般原理和基本方法。内容包括语言和文法、词法分析、语法分析、语法制导翻译、中间代码生成、存储管理、代码优化和目标代码生成。 编译原理是计算机专业设置的一门重要的专业课程。虽然只有少数人从事编译方面的工作,但是这门课在理论、技术、方法上都对学生提供了系统而有效的训练,有利于提高软件人员的素质和能力(The principle of compilation is an important professional course in com
  3. 所属分类:其他

    • 发布日期:2018-04-21
    • 文件大小:27817984
    • 提供者:dispa1r
« 1 2 3»
搜珍网 www.dssz.com