搜索资源列表
ll1fenxi
- LL1文法分析器的例子,用vc++6.0制作,调试成功-LL1 grammar analyzer example, produced using vc 6.0, debug success
Winsuanfu007
- 算符优先文法分析器的例子,vc++6.0制作-operator priority grammar analyzer example, produced 6.0 vc
界面友好的词法分析器
- 建议的词法分析器,界面友好,用户把文法放在input文档中,由程序调用,在ouput文档中给出分析结果,-the lexical analyzer friendly interface, users grammar on the input documents, procedures called by the ouput documents presented results of the analysis,
ll1ll1
- 编译原理LL(1)文法分析器 录入合法的LL(1)文法,将输出LL(1)预测分析表,并可以对输入的句子进行语法分析输出相应语法树。 程序中部分算法还很不简洁,有待改进,欢迎朋友与我多多交流。 lifanxi@263.net 2002年5月-compiler theory LL (1) grammar analyzer input legitimate LL (1) grammar, will output LL (1) Table Forecast and An
lr0
- 编译原理LR(0)文法分析器 录入合法的LR(0)文法,将输出LR(0)分析表,并可以对输入的句子进行语法分析输出相应语法树。 程序中部分算法还很不简洁,有待改进,欢迎朋友与我多多交流。 -compiler theory LR (0) grammar analyzer input legitimate LR (0) grammar, will output LR (0) analysis table, and may import for the sentence syntax
lpy
- ll1文法分析器 ,但是只有界面,其中的算法要在以后更新-ll1 grammar analyzers, but only interface, the algorithm updates to the future
编译原理—LL(1)文法分析器(1.0)
- 编译原理—LL(1)文法分析器(1.0) 求LL(1)文法的FOLLOW集合工具: 软件读入一个LL(1)文法,生成其FOLLOW集合。-compiler theory-LL (1) grammar analyzer (1.0) for LL (1) grammar FOLLOW Set tools : software read an LL (1) grammar, generating its FOLLOW pool.
某小型语言的预测分析器
- 设计一个小型语言,要求有基本的程序语句,给出该小型语言的LL(1)文法,用预测分析法实现对该小型语言的LL(1)文法的语法分析。
LL(1)语法分析器
- LL1语法分析器实验源代码加详细报告
LR(0)文法分析器
- 一个简单的LR(0)文法分析器,功能不算很多,但是应有的功能都有
LL1
- LL(1)文法分析器~~~包含实验报告 文法为: *(1) E->TG *(2) G->+TG *(3 G->-TG *(4) G->^ *(5) T->FS *(6) S->*FS *(7) s->/FS *(8) S->^ *(9) F->(E) *(10) F->i -LL (1) grammar analyzer ~ ~ ~ with experimental rep
lr1fenxifa
- LR1文法分析器 计算机科学与技术专业 编译原理-LR1 grammar parser of Computer Science and Technology Compilation Principle
89346505lr1
- lr文法分析器 把文法通过程序翻译生成文法分析表-lr parser grammar to grammar translation of Health through the enactment process analysis table
LL1
- LL1文法分析器。实现first follow select-LL1 grammar analyzer. Achieve first follow select
实验2
- LL1文法分析器,可以识别LL1文法,求出first集与follow集,生成分析表。(LL1 grammar analyzer, you can identify the LL1 grammar, find the first set and follow set, generate an analysis table.)
编译原理词法分析器
- 2.1 待分析的简单的词法 (1)关键字: begin if then while do end 所有的关键字都是小写。 (2)运算符和界符 : = + - * / < <= <> > >= = ; ( ) # (3)其他单词是标识符(ID)和整型常数(SUM),通过以下正规式定义: ID = letter (letter | digit)* NUM = digit digit* (4)空格有空白、制表符
语法分析器
- 该程序使用的自上而下的LL(1)分析法,,该文法不允许左递归,首先要消除左递归。(The program uses the top-down LL (1) analysis method, which does not allow left recursion, and the left recursion is first eliminated.)