Welcome![Sign In][Sign Up]
Location:
Search - ll(1)

Search list

[ELanguage20170828889

Description: 编译原理LL(1)语法分析 从文法开始,一直做到了符号表的实现-Compilation Principle LL (1) grammar analysis grammar start symbol table has been able to realize the
Platform: | Size: 60416 | Author: daiuirchuan | Hits:

[Software Engineeringll1

Description: LL(1)文法使用的是确定的自顶向下的分析技术。LL(1)的含义是:第一个L表明自顶向下分析是从左向右扫描输入串,第2个L表明分析过程中将使用最左推导,1表明只需向右看一个符号便可决定如何推导,即选择哪个产生式(规则)进行推导。 LL(1)文法的判别需要依次计算FIRST集、FOLLOW集和SELLECT集,然后判断是否为LL(1)文法,最后再进行句子分析。 -LL (1) grammar is used to determine the top-down analysis techniques. LL (1) the meaning is: the first show that L is top-down analysis from left to right scan input strings, the first two L analysis showed that the process is derived using the most left, look to the right one shows that only a symbol will be can decide how derived, that is, to choose which production (rule) for derivation. LL (1) determine the needs of grammar followed by calculation of FIRST sets, FOLLOW sets and SELLECT set, and then determine whether to LL (1) grammar, sentence analysis of the final again.
Platform: | Size: 475136 | Author: 黄宇 | Hits:

[ELanguageLL(1)yufafenxi

Description: *--- --- --声明--- --- -----*/ /* VC6.0下运行通过 此程序为本人苦心所做,请您在阅读的时候,尊重本人的 劳动。可以修改,但当做的每一处矫正或改进时,请将改进 方案,及修改部分发给本人 (修改部分请注名明:修改字样) Email: jink2005@sina.com QQ: 272576320 ——初稿完成:06-5-27 jink2005 补充: 程序存在问题: (1) follow集不能处理:U->xVyVz的情况 (2) 因本人偷懒,本程序为加入文法判断,故 输入的文法必须为LL(1)文法 (3) 您可以帮忙扩充:消除左递归,提取公因子等函数 (4) …… */ /*-----------------------------------------------*/ /*参考书《计算机编译原理——编译程序构造实践》 LL(1)语法分析,例1: ERTWF# +*()i# 文法G[E]:(按此格式输入) 1 E -> TR 2 R -> +TR 3 R -> 4 T -> FW 5 W -> * FW 6 W -> 7 F -> (E) 8 F -> i 分析例句:i*(i)# , i+i# 例2: 编译书5.6例题1 SHMA# adbe# S->aH H->aMd H->d M->Ab M-> A->aM A->e 分析例句:aaabd# */-err
Platform: | Size: 5120 | Author: | Hits:

[assembly languageLL(1)suanfa

Description: LL(1)文法判定算法,LL(1)文法使用的是确定的自顶向下的分析技术。LL(1)的含义是:第一个L表明自顶向下分析是从左向右扫描输入串,第2个L表明分析过程中将使用最左推导,1表明只需向右看一个符号便可决定如何推导,即选择哪个产生式(规则)进行推导。 LL(1)文法的判别需要依次计算FIRST集、FOLLOW集和SELLECT集,然后判断是否为LL(1)文法,最后再进行句子分析。 -LL (1) grammar algorithm to determine, LL (1) grammar is used to determine the top-down analysis techniques. LL (1) the meaning is: the first L showed that top-down analysis is scanned from left to right input strings, the first two L analysis will show that the use of the most left-derived, 1 shows that only a symbol to the right to see it can decide how derived, namely, to choose which production (rule) for derivation. LL (1) determine the needs of grammar followed by calculating the FIRST set, FOLLOW sets and SELLECT set, and then determine whether to LL (1) grammar, sentence analysis of the final again.
Platform: | Size: 32768 | Author: | Hits:

[ELanguageCompile_LL

Description: 这是一个编译原理的课程设计,完成了词法分析与语法分析的功能,其中语法分析用LL(1)文法
Platform: | Size: 672768 | Author: dwq | Hits:

[VC/MFCLL(1)

Description: 编译原理词法分析,一个自顶向下LL(1)算法分析电子书,-Compilation Principle lexical analysis, a top-down LL (1) algorithm for analysis of e-books,
Platform: | Size: 897024 | Author: 刘维妮 | Hits:

[ELanguageLL(1)

Description: 功能很强大的语法分析程序,你想要的都在里面了-Functional grammar is very powerful analytical procedures, all you want inside the
Platform: | Size: 160768 | Author: KG | Hits:

[ELanguageLL(1)wenfa

Description: 这是一个完整的文法分析器,能识别FIRST、FOLLOW集,还有实验报告!-This is a complete grammar parser, to identify FIRST, FOLLOW sets, there are experimental reports!
Platform: | Size: 230400 | Author: yangshuangxue | Hits:

[ELanguageLL(1)

Description: 对if else 语句采用LL(1)文法分析实现过程及翻译过程-If else statement on the use of LL (1) grammar analysis of the realization of the process and the process of translation
Platform: | Size: 201728 | Author: 黄仁杰 | Hits:

[ELanguageLL

Description: 编译原理的LL(1)分析法的程基本序模版-Compilation Principle of LL (1) analysis of the way the basic sequence template
Platform: | Size: 38912 | Author: 张新钢 | Hits:

[PropertySheetLL(1)

Description: 实现ll(1)文法 输入文法文件,然后打开运行 输出结果 -Achieve ll (1) grammar grammar input file, and then open the run output
Platform: | Size: 29696 | Author: song | Hits:

[ELanguagell(1)

Description: 一个LL1分析器,可以输入产生式的条数,以及产生式,开始符号 结束符号 可以输出堆栈的运行情况-A LL1 parser, you can enter the production number of the article, as well as the production start symbol symbol can be the end of the operation of the output stack
Platform: | Size: 986112 | Author: 刘以风 | Hits:

[ELanguageww

Description: 多个程序,C++编写的。自己在做编译课设时搜集参考用的,呵呵,都放上来了,有各种语法写的,LL(1),LR的,递归下降的,还有语义分析部分,有四元式,逆波兰式等等,而且每个都能调试运行。(不好的,我可不拿出来现眼)-Number of procedures, C++ prepared. They are doing when compiling the collection of class-based reference, huh, huh, are放上来, and a variety of written grammar, LL (1), LR, and recursive decline, there are some semantic analysis, and quaternion type, Reverse Polish-style, etc., and each able to run debug. (Not good, I do not现眼out) ... ...
Platform: | Size: 7874560 | Author: wangyao | Hits:

[Windows Develop89346479experimentofll(1)

Description: LL(1)预测分析法(1)判别文法是否为LL(1)文法。为此需要依次计算FIRST集、FOLLOW集和SELLECT集,根据SELLECT集可判断文法否为LL(1)文法。 (2)构造出分析表。根据SELLECT集和文法产生式构造出LL(1)分析表。 (3)进行句子分析。依据分析表判断出某句子是否为给定文法的句子。 -LL (1) Forecast Analysis
Platform: | Size: 8192 | Author: lucky | Hits:

[ELanguagell

Description: 是用Visual C++实现的一个LL(1)分析过程模拟-With Visual C++ realization of a LL (1) Analysis of Process Simulation
Platform: | Size: 768000 | Author: 刘德慧 | Hits:

[EditorLL1

Description: LL(1)预测分析程序代码,演示自上而下语法分析的过程.-compiler
Platform: | Size: 187392 | Author: smartdue | Hits:

[ELanguageLL1ForWin(1)

Description: 国防工业出版社 LL(1)算法的源程序 功能强大 简单易懂-National Defense Industry Press LL (1) algorithm is a powerful source code easy to understand
Platform: | Size: 33792 | Author: stqcwstqcw | Hits:

[ELanguageLL1_VC

Description: LL(1)文法使用的是确定的自顶向下的分析技术。LL(1)的含义是:第一个L表明自顶向下分析是从左向右扫描输入串,第2个L表明分析过程中将使用最左推导,1表明只需向右看一个符号便可决定如何推导,即选择哪个产生式(规则)进行推导。-LL (1) grammar using a set top-down analysis techniques. LL (1) the meaning is: the first one L shows a top-down analysis is a scan input string from left to right, the first two L shows the analysis process will be the most left-derivation, one that will be just right to see a sign can decide how to derive, choose what Production (rules) for derivation. LL (1) grammar, followed by calculation of the discriminant needs FIRST sets, FOLLOW sets and SELLECT set, and then determine whether to LL (1) grammar, the last sentence further analysis.
Platform: | Size: 3693568 | Author: biao | Hits:

[ELanguageLL(1)

Description: 运用VB编写的一个关于编译原理实践的LL(1)预测分析系统,可视化界面,方便。-Prepared using a VB compiler theory practice on LL (1) forecast analysis system, visual interface and convenient.
Platform: | Size: 242688 | Author: zhh | Hits:

[ELanguageLL(1)

Description: LL(1)实现语法分析(自上而下,自下而上)的可视化过程-LL(1)
Platform: | Size: 1265664 | Author: yt | Hits:
« 1 2 3 45 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net