搜索资源列表

  1. cmd_SNL_C_complier

    0下载:
  2. snl语言是一个简单的具有嵌套过程定义的过程式语言,本原码用C语言实现了SNL语言的词法分析,语法分析,语义分析,中间代码生成,中间代码优化,目标代码优化的完整模块,并有极为详细的注释,是学习编译原理的极佳材料。-snl language is a simple process with nested definition of language, Primitive code using C language of SNL langu
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-19
    • 文件大小:232448
    • 提供者:张振宇
  1. visual_SNL_C_complier

    0下载:
  2. snl语言是一个简单的具有嵌套过程定义的过程式语言,本原码用C语言实现了SNL语言的词法分析,语法分析,语义分析,中间代码生成,中间代码优化,目标代码优化的完整模块,并有极为详细的注释,是学习编译原理的极佳材料。-snl language is a simple process with nested definition of language, Primitive code using C language of SNL langu
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-19
    • 文件大小:3491840
    • 提供者:张振宇
  1. zhongjiandaima321

    0下载:
  2. 编译的中间代码生成,生成4元组,用的是至顶向下分析-intermediate compiler code generation, the group generated four yuan, is the top-down analysis
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:chen
  1. WordAnalyser

    0下载:
  2. 1.1 引言 1.1.1 设计目的 本次课程设计是在完成一个学期的编译原理课程之后,为了进一步加深对编译原理相关知识的理解,培养实际解决问题的能力而进行的。结合本学期所开设的软件工程课程,本次课程设计实验过程要求按照软件工程的思想来组织开发过程,按照软件生命周期的阶段划分来进行。由于课程设计规模较小,所以对软件生命周期进行适当的合并,简化为五个阶段,即需求分析、总体设计、详细设计、编码实现和测试。 1.1.2 设计任务
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-19
    • 文件大小:438272
    • 提供者:
  1. for

    1下载:
  2. 编译原理的FOR循环语句的翻译,中间代码生成,以及语法,词法分析等-compiler principles FOR cycle statement to the translation, intermediate code generation, as well as grammar, lexical analysis
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-19
    • 文件大小:8192
    • 提供者:yan yue
  1. xxxprincecode

    0下载:
  2. 便宜原理中间代码生成部分,对学习编译的同学有帮助-Principle between the cheapest part of code generation, compiler of learning has helped students
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-19
    • 文件大小:18432
    • 提供者:辛华
  1. BIANYIDAIMA

    0下载:
  2. 编译原理学习使用的代码 内容有从词法分析到中间代码生成的代码 并且含有注释-Principles of learning to use compiled code from the lexical analysis of the contents of the intermediate code generated code and contains the Notes
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-19
    • 文件大小:899072
    • 提供者:zhouxin
  1. analyser

    0下载:
  2. 整个工作过程主要划分成词法分析阶段、语法分析阶段、中间代码生成和目标代码生成四个部分。 第一阶段是把输入的字符串形式的源程序分割成一个个单词符号。 第二阶段是识别由词法分析给出的单词符号序列在结构上是否符合给定的文法规则。 第三阶段中间代码的形式采用便于阅读的四元式。 第四阶段是把经过语法分析或优化后的中间代码作为输入,将其转换成特定机器的机器语言或汇编语言作为输出,这样的转换程序称为代码生成器。-The whol
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-19
    • 文件大小:81920
    • 提供者:刘提
  1. for-else

    0下载:
  2. 本课程设计是一个编译器的设计,包括词法分析部分、语法分析部分和中间代码生成部分。词法分析部分既词法分析器的设计,词法分析是编译的基础,执行词法分析的程序称为词法分析器,也就是说编译程序中完成词法分析任务段就是词法分析器。语法分析部分为语法分析器的设计,采用LR(1)分析方法进行语法分析,判断给出的符号串是否为该文法识别的句子。中间代码生成器部分主要实现逆波兰式的生成,将用中缀式表示的算术表达式转换为用逆波兰式表示的算术表达式,并计算用逆
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-19
    • 文件大小:104448
    • 提供者:李霖
  1. myjava

    0下载:
  2. 我开发的一个用java语言实现的编译器,内含词法分析器,语法分析器,而且可以实现中间代码生成.用到了SLR算法和LR(1)算法-I developed a java language using the compiler, containing the lexical analyzer, syntax analyzer, and code generation can be achieved between. Used the SLR
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-19
    • 文件大小:67584
    • 提供者:陈想
  1. 8581224577

    0下载:
  2. 这是编译原理的源代码,涉及了编译原理的各个过程:词法分析,LL1语法分析,语义分析,中间代码生成,中间代码优化-This is the principle of the compiler source code, compile the principle involved in all processes: lexical analysis, LL1 grammar analysis, semantic analysis, inter
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-19
    • 文件大小:16384
    • 提供者:wp
  1. Middle_Code

    0下载:
  2. 中间代码生成器设计(4学时) 1.实验目的 熟悉算术表达式的语法分析与中间代码生成原理。 2.实验类型 综合性。 3.实验基本要求 (1) 设计语法制导生成表达式的四元式的算法; (2) 编写代码并上机调试运行通过。 • 输入——算术表达式 • 输出—— 语法分析结果 相应的四元式序列-Intermediate code generator design (4 hours)
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-19
    • 文件大小:860160
    • 提供者:js
  1. neirong

    0下载:
  2. (1)编制一个中间代码生成程序,能将算术表达式(如带有嵌套括号)等翻译成四元组。 (2)程序具有通用性,即能接受各种不同的算术表达式等语法成分。 (3)有运行实例.对于语法正确的算术表达式,能生成四元组序列,并输出结果;对不正确的表达式,能检测出错误。 (4)提交实习报告。-(1) between the preparation of a code generation process, can be arithme
  3. 所属分类:Windows编程

    • 发布日期:2024-05-19
    • 文件大小:14336
    • 提供者:郑田
  1. Compile

    0下载:
  2. 本程序是用c#写的一个编译器,实现了词法,语法,语义分析和中间代码生成,输出结果功能-This procedure is used c# Write a compiler, the realization of the lexical, syntax, semantic analysis and code generation between, the output function
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-19
    • 文件大小:675840
    • 提供者:zhuwen
  1. zhangjiyu

    0下载:
  2. 表达式中间代码生成四元式。输入算术表达式,输出相应的四元式。-Expression of intermediate code generation quaternion type. Enter the arithmetic expression, the output corresponding quaternion type.
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-19
    • 文件大小:89088
    • 提供者:lirunxe
  1. compiler

    1下载:
  2. 一个不算完整的编译器实现,包括前端的词法分析,语法分析,语义分析,中间代码生成,中间代码优化及界面部分-A compiler is not complete realization, including the front of lexical analysis, syntax analysis, semantic analysis, intermediate code generation, code optimization and
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-19
    • 文件大小:3623936
    • 提供者:chuchong
  1. paser_code

    0下载:
  2. 编译原理实验之中间代码生成(四元式),在加实验报告-Compiler Principle Experiment intermediate code generation (quaternion-style), in Canada Experimental Report
  3. 所属分类:压缩解压

    • 发布日期:2024-05-19
    • 文件大小:109568
    • 提供者:fd
  1. analysis

    0下载:
  2. 产生一个编译器,包含词法分析,语法分析,语义分析,中间代码生成及优化等-the result is a compiler,which contains the Lexical Analysis,Grammar analysis Semantic Analysis Between code generation and optimization and so on
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-19
    • 文件大小:4334592
    • 提供者:dillon
  1. C-Compiler

    0下载:
  2. C-编译器,包含词法分析语法分析,中间代码生成,操作简单-C-compiler, lexical analysis contains syntax analysis, intermediate code generation, easy
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-19
    • 文件大小:940032
    • 提供者:xuling
  1. NEW

    0下载:
  2. 编译原理:实现中间代码生成。从终端读入用户输入,经过词法分析,生成中间代码,以此作为语法分析的输入。-Compilation Principle: To achieve intermediate code generation. Read user input from the terminal, through lexical analysis, intermediate code generation as parsing inpu
  3. 所属分类:系统编程

    • 发布日期:2024-05-19
    • 文件大小:3072
    • 提供者:pjq
« 1 23 4 5 6 7 8 9 10 ... 16 »

源码中国 www.ymcn.org