搜索资源列表
bnf
- BNF 递归下降语法分析器 文法: E->E+T|T T->T*F|F F->(E)|i-BNF recursive grammar decline parser : E -
dgxjyffxq
- 递归下降语法分析器,如果有错误,请把getch()改成getchar() 把putch()改成putchar()VC6.0下编译执行OK-recursive syntax analyzer decline, if there was any mistake. Please getch () changed getchar () putch () changed putchar () V under +6.0 compiler implementation OK
dgxjf
- 一个递归下降语法分析器。 测试数据为 i a + nul ( nul i b * nul i c ) nul # nul -dropped a recursive grammar analyzers. Test data for a nul i (i nul nul i b * c) nul nul #
d
- 递归下降语法分析器
递归下降分析器/词法分析
- 实现了简单词法分析和语法分析 实现平台eclipse
递归下降分析器
- 目的】 使用递归子程序法设计一个语法分析程序,理解自顶向下分析方法的原理,掌握手工编写语法分析程序的方法。 【要求】 1、使用递归下降分析算法分析表达式文法: exp ::= exp addop term | term addop ::= + | - term ::= term mulop factor | factor mulop ::= * | / factor ::= (exp) | number 其中number可以是多位的十进制数字串(整数即可),因此这里还需要一个小的词法分析器来得到
语法分析器:递归下降子程序的编写
- 语法分析器:递归下降子程序的编写 通过本实验,了解递归下降预测分析的原理和过程以及可能存在的回溯问题,探讨解决方法,为预测分析表方法的学习奠定基础。分析递归下降子程序的优缺点。-Parser: recursive descent routines written by this study to understand the principle of recursive descent and the process of predictive analysis, and possibl
yufafenxi.rar
- 程序名称: 递归下降语法分析器 程序用途: 编译原理实验 实验题目: 识别下列表达式 E->E+T|T T->T*F|F F->(E)|i ,Name: recursive descent parser program purposes: to compile the experimental subject of experiment: Identify the following expression of E-> E+ T | T T-> T* F |
compil
- C语言编写的cminus语言语法分析器,采用递归下降方法-Cminus written in C language parser, using recursive descent method
parser
- 采用递归下降分析法实现C0语言的语法分析器,其中中间表示采用抽象语法树的形式。 程序的输入:词法分析阶段的输出文件 程序的输出:存储了抽象语法树相关信息的XML格式的文件 -Decline in the use of recursive analysis method to achieve C0 language parser, which indicated that the use of intermediate abstract syntax tree form. Proced
142
- 编译原理中的递归下降语法分析器写得不好请凉解-Compilation Principle of Recursive dropped poorly written parser please cooler solution
lexer
- 采用递归下降的语法分析器,语法为简单的fortran语言-Decline in the use of recursive parser, grammar for simple fortran language
yufafengqi
- 一个递归下降的语法分析器,很好的哦,希望大家能够喜欢,-A recursive descent parser in, oh well, hope that we can like it,
LL
- 递归下降分析法实现LL(1)文法的语法分析器-Recursive implementation fell analysis LL (1) grammar parser
Cpp2
- 递归下降算法,自顶向下语法分析器的设计与实现 -递归下降算法
cifa
- 词法分析器与递归下降的语法分析器的结合,含有实验报告,用c语言编写-Lexical analyzer and recursive-descent parser combination, containing experimental report, using c language
20100107
- 递归下降语法分析器,递归下递归下降语法分析器降语法分析器,-Recursive descent parser, recursive recursive descent parser fall under the parser,
RecursiveDescentParser
- 一种自顶向下的语法分析方法的思想,根据文法的产生式规则绘制相应的转换图,并能对之进行简化,继而构造出相应的递归下降分析器。-A kind of top-down method of syntax analysis of the idea, according to the grammar production rules mapping the corresponding conversion map and the simplification can then construct the
Compile-principle-experiment1-6
- 编译原理实验指导书 实验一 词法分析程序(扫描器)的设计 实验二 递归下降语法分析程序设计 实验三 LL(1)语法分析器设计 实验四 算符优先分析器设计 实验五 LR分析器设计 实验六 语法制导翻译程序设计-Compile term Principle Experiment Experimental Analysis of Instruction Program (scanner) is designed to test two recursive descent par
ex2
- 编译原理实验,实现递归下降语法分析,比较简单的小程序(Compiler theory experiments, recursive descent syntax analysis, relatively simple procedure)