搜索资源列表

  1. LR0-angelassie

    0下载:
  2. 关于四则混合运算的LR0语法分析器.一个编译的实验.大家看看吧..交流下.-on four mixed operations LR0 Parser. Compiling an experiment. We watch it .. exchanges under.
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-16
    • 文件大小:3072
    • 提供者:王阳
  1. yffx

    0下载:
  2. 编译原理课程设计LR(0)自底向上语法分析-Principles of curriculum design compiler LR (0) bottom-up parsing
  3. 所属分类:Windows编程

    • 发布日期:2024-05-16
    • 文件大小:1024
    • 提供者:m38381338
  1. dowhile

    0下载:
  2. 设计一个WHILE循环语句的词法﹑语法及语义分析程序,语法分析选择LR方法,采用用语法制导翻译输出中间代码四元式。-The design of a WHILE loop ﹑ the lexical grammar and semantic analysis procedures, choice of LR parsing method guided by syntax translation output intermediate co
  3. 所属分类:文档资料

    • 发布日期:2024-05-16
    • 文件大小:8192
    • 提供者:李伟霞
  1. maimai

    0下载:
  2. ifelse语句翻译 词法,语法分析以及赋值语句的翻译lr方法,三地址输出-ifelse statement translation lexical, grammatical analysis and translation lr assignment method, the three address output
  3. 所属分类:其他小程序

    • 发布日期:2024-05-16
    • 文件大小:3072
    • 提供者:maodoudou
  1. yacc

    0下载:
  2. 利用LR(1)分析表和状态图进行语法分析,里面有详细的报告说明-LR (1) analysis of the table and the state diagram syntax analysis, which has a detailed descr iption of the report
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-16
    • 文件大小:430080
    • 提供者:天才
  1. Grammer_Ana

    0下载:
  2. 一个简单的语法分析程序,采用LR(1)分析法,并使用递归向下和自上而下的方法。-A simple parser, using the LR (1) analysis, and use the down and top-down recursive approach.
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-16
    • 文件大小:3072
    • 提供者:John
  1. LRanalyser

    0下载:
  2. LR语法分析程序,根据给定的语法判断输入是否符合语法-LR parser, the grammar given the input to determine whether the syntax
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-16
    • 文件大小:431104
    • 提供者:tong
  1. the-compiler

    0下载:
  2. 代码包含的功能:词法分析,语法分析,中间代码生成。使用的是LR语法分析技术。-the compiler.
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-16
    • 文件大小:921600
    • 提供者:vanni
  1. for

    0下载:
  2. 编译原理for语句的翻译,LR文法,输出四元式,有语法分析,词法分析功能-Compiler theory for the translation of the statement, LR grammar, out four yuan style, syntax analysis, lexical analysis
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-16
    • 文件大小:2048
    • 提供者:彭萍
  1. LR

    0下载:
  2. LR0)分析表分析法,给出一个分析表含action和goto表,然后对给出的语句进行语法分析,规约判断! -it is a big plan
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-16
    • 文件大小:2048
    • 提供者:小李
  1. main

    0下载:
  2. 使用如下文法: E E+T | T T T*F | F F (E) | id 实现:对于任意给定的输入串(词法记号流)进行语法分析,要求采用LR分析器来完成。手工构造LR分析表,利用移进-归约分析算法输出对应的动作部分。-Use the following syntax:E T E+T |* F F T T |F ( E ID ) |Implementation: for any given input str
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-16
    • 文件大小:1024
    • 提供者:fansofdetective
  1. Syntax-and-semantic-analysis-code

    0下载:
  2. vc实现编写,用LR(1)文法,实现语法、语义分析综合代码-vc achieve the preparation of LR (1) grammar, syntax and semantic analysis of a comprehensive code
  3. 所属分类:Windows编程

    • 发布日期:2024-05-16
    • 文件大小:5120
    • 提供者:SHINE
  1. Semantic

    0下载:
  2. 一个简单的包括词法、语法、语义分析的编译器,只能识别简单的表达式,方法LR(1)-A simple compiler, including lexical, syntactic, semantic analysis can only recognize the simple expression method LR (1)
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-16
    • 文件大小:86016
    • 提供者:蔡子新
  1. LR

    0下载:
  2. 简易的LR语法分析器,只能实现用SLR(0)语法分析,不能实现LR(1)-Simple LR parser, can only be realized SLR (0) parsing can not be realized LR (1)
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-16
    • 文件大小:2048
    • 提供者:郭一骏
  1. 101306118

    0下载:
  2. 实验三 LR分析法的实现 一、实验目的 实现一个关于表达式的LR语法分析程序,识别用户输入的包含变量与整数的混合算术表达式(不包含减法与除法运算)。 -二、实验主要内容 1、文法如下: 0) S E 1) E E+E 2) E E*E 3) E (E) 4) E i 2、对应的LR分析表如下: 状态 ACTION
  3. 所属分类:其他小程序

    • 发布日期:2024-05-16
    • 文件大小:2048
    • 提供者:石一峰
  1. calacomplie

    0下载:
  2. 设计多个类,实现整数算术表达式的翻译与计算,其中包括: 1. 识别输入字符串中的整数和各种运算符号 2. 判断输入字符串是否满足整数算术表达式的语法规则 3. 对满足语法规则的字符串,采用递归下降分析法、LL(1)分析法、优先分析法或LR分析法,建立输入字符串的语法树 4. 根据语法树,将输入字符串翻译成中间的四元式代码表示 5. 根据四元式代码,计算整个表达式的值并输出 6. 设计合理的输入、输出界面-A pr
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-16
    • 文件大小:3072
    • 提供者:kelvin
  1. c-language

    0下载:
  2. 关于C的词法分析和LR语法分析,包括测试程序,还有文档,以及编程的步骤。-C lexical analysis and LR parsing, including the step of testing procedures, as well as documentation, and programming.
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-16
    • 文件大小:279552
    • 提供者:icier
  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 ana
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-16
    • 文件大小:77824
    • 提供者:宋yucai
  1. LR

    0下载:
  2. 利用LR分析方法实现的语法分析器。语法分析器(Parser)通常是作为编译器或解释器的组件出现的,它的作用是进行语法检查、并构建由输入的单词组成的数据结构(一般是语法分析树、抽象语法树等层次化的数据结构)。语法分析器通常使用一个独立的词法分析器从输入字符流中分离出一个个的“单词”,并将单词流作为其输入。-LR-implemented method of analysis utilizing the parser. Parser (Par
  3. 所属分类:其他小程序

    • 发布日期:2024-05-16
    • 文件大小:237568
    • 提供者:周慕白
  1. LR0Algorithm_V1

    0下载:
  2. LR算法图形化演示系统,语法树,语法分析表-LR algorithm graphical presentation systems, syntax tree parsing table
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-16
    • 文件大小:67584
    • 提供者:毛勇乐
« 1 2 ... 4 5 6 7 8 910 »

源码中国 www.ymcn.org