搜索资源列表
bnf
- BNF 递归下降语法分析器 文法: E->E+T|T T->T*F|F F->(E)|i-BNF recursive grammar decline parser : E -
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 #
递归下降分析器/词法分析
- 实现了简单词法分析和语法分析 实现平台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
- 语法分析器是函数绘图语言解释器的核心,因此语法分析器的构造是整个解释权构造的关键。语法分析器的构造分为两个重要步骤:规定语言的文法和根据文风编写程序。由于采用递归下降子程序方法,因此在文法的设计上要求是LL(1)文法。具体到此绘图语言,需要构造语法树的语言结构仅限于表达式,因为后继语义处理需要对表达式求值,而对语法树进行遍历即可得到表达式的值。 我们最终构造的是递归下降的语法分析器,要求文法是LL(1)文法,因此需要对二义文法进行改造:即先将文法改写为非二义文法,消除左递归,提取公共左因子,
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
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
29782161Scanner
- 递归下降分析法实现C0语言的语法分析器,其中中间表示采用抽象语法树的形式。 程序的输入-sdasdfsadfsadfsdfsdf
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
YFFXQ
- 使用递归子程序法设计一个语法分析程序,自顶向下分析方法. 1、使用递归下降分析算法分析表达式文法: exp ::= exp addop term | term addop ::= + | - term ::= term mulop factor | factor mulop ::= * | / factor ::= (exp) | number 其中number可以是多位的十进制数字串(整数即可),因此这里还需要一个小的词法分析器来得到number的值。 2、该
yufa
- 语法分析器,编译原理实验,用递归下降分析法,可分析表达式-Parser, compiler theory test, using recursive descent analysis, the expression can be analyzed
fenxi
- 编译原理:c语言的语法分析器(使用递归下降法,需从d盘读入分析文件)-Compiler theory: c language parser (recursive descent, be read from the d drive of files)
yufafenxiqi
- 加深对语法分析器工作过程的理解;加强对递归下降法实现语法分析程序的掌握;能够采用一种编程语言实现简单的语法分析程序;能够使用自己编写的分析程序对简单的程序段进行语法翻译-Deepen the understanding of the work process parser step recursive descent parser to achieve mastery able to use a simple programming language parser to use their
Simple-syntax-parsers
- 简单递归下降语法分析器,只能识别整形数据,需要可自行添加其他类型-failed to translate
20110614
- 递归下降法-语法分析器, 包括说明与代码,都在word文档中-Recursive descent- including a descr iption of the parser and code