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

Search list

[ELanguage判断是否为ll(1)文法程序

Description: 一个程序,用于判定给定的文法是否为LL(1)文法。 实现了:1.文法的机内表示;2. FIRST集和FOLLOW集的计算; 3. LL(1)预测分析表的构造。-a procedure for the determination of grammar to whether LL (1) grammar. Realized : 1. Grammar said the machines; 2. FIRST FOLLOW sets and set computing; 3. LL (1) Forecast and Analysis table structure.
Platform: | Size: 23961 | Author: luo | Hits:

[ELanguageLL(1)分析的实现

Description: 编译中的LL(1)分析方法的实现。对于输入的文法,判断其有效性,用LL(1)方法进行语法分析,并可判别输入的符号串是否为该文法的句型。 -compiler of LL (1) Method of analysis. The importation of the grammar, to judge its effectiveness, with LL (1) methods for syntax analysis, discriminant can input strings of symbols to whether the grammar driven.
Platform: | Size: 10312 | Author: 原子 | Hits:

[Other resourcell(1)词法分析

Description: LL(1)语法分析程序,编译原理课用得到哦,可以作到词法分析表吧(idle)-LL (1) syntax analysis program, compile Principle used to be, oh, Lexical analysis can be done table it (idle)
Platform: | Size: 82075 | Author: 王淼 | Hits:

[ELanguageLL(1)wenfaa

Description: LL(1)文法的实现方法,有需要的可以-LL (1) grammar method, it is necessary to look at the
Platform: | Size: 2093 | Author: cai | Hits:

[ELanguageLL(1)_syntax

Description: LL(1)语法分析程序 (1)对输入文法,它能判断是否为LL(1)文法,若是,则转(2);否则报错并终止; (2)输入已知文法,由程序自动生成它的LL(1)分析表; (3)对于给定的输入串,应能判断识别该串是否为给定文法的句型。 -LL (1) syntax analysis program (1) on the importation of grammar, it can determine whether to LL (1) grammar, and if so, in turn, (2); Otherwise errors and terminated; (2) the importation of known grammar, automatically generated from the LL (1 ) analysis table; (3) For a given set of input strings should be able to judge whether the identification of the string for a given grammar driven.
Platform: | Size: 82050 | Author: 张玉峰 | Hits:

[Other resourcell(1)Analyzer

Description: 执行程序,输入文法,与需要分析的语句执行ll(1)分析,很方便-implementation procedures, the importation of grammar, and the need to analyze the implementation of the phrase ll (1) analysis, is a convenient
Platform: | Size: 11505 | Author: Wandy_1234 | Hits:

[Other resourceLL(1)defenxiqi

Description: 这是一个LL(1)的分析器,针对文法E->TG , T->FU , G->+TG|^ , U->*FU|^ , F->(E)|i,是对编译原理初学者的一个帮助。-This is an LL (1) analyzers, the grammar-E -
Platform: | Size: 7909 | Author: 飞翔 | Hits:

[ELanguage简易语法分析程序LL

Description: 简易语法分析程序LL(1) (1)对输入文法,它能判断是否为LL(1)文法,若是,则转(2);否则报错并终止; (2)输入已知文法,由程序自动生成它的LL(1)分析表; (3)对于给定的输入串,应能判断识别该串是否为给定文法的句型-simple syntax analysis procedures LL (1) (a) on the importation of grammar. it will determine whether to LL (1) grammar, and if so, in turn, (2); Otherwise errors and terminated; (2) the importation of known grammar, automatically generated from the LL (1) Analysis Table; (3) For a given set of input strings should be able to judge whether the identification of the string for a given grammar Sentence
Platform: | Size: 82442 | Author: 赵珊珊 | Hits:

[Other resourceLL(1)_parsing

Description: 关于编译方面的LL(1)语法分析程序,可以输出分析栈,按要求可以实现对输入字符串的完整分析归约过程。-compiler on the LL (1) syntax analysis procedures can output analysis stack, by asking for input strings to achieve a complete analysis of the reduction process.
Platform: | Size: 1890 | Author: zhou | Hits:

[OtherLL(1)Syntax

Description: 用LL(1)方法分析四则运算,包括一个词法分析的头文件。-with LL (1) Analysis of four operations, including a lexical analysis of the headers.
Platform: | Size: 3710 | Author: 田甜 | Hits:

[EditorLL(1)while

Description: 用C++做的LL(1)分析法的程序,大家先用着吧,比较好用吧-C do LL (1) analysis of the procedure, we first used to it, the more useful it
Platform: | Size: 23570 | Author: John | Hits:

[ELanguageLL(1)daima

Description: [编译原理课程设计-源代码]LL(1)语法分析代码(c++).-[Design Compiler Principle-source code] LL (1) syntax analysis code (c).
Platform: | Size: 2194 | Author: xiaogemao | 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# */
Platform: | Size: 5280 | Author: 林月忠 | Hits:

[ELanguageCompilerExperiment3-syntaxAnalysis-1

Description: 一个小的教学用的编译器(PL0语言)方便学习《编译原理》的语法分析器LL(1)文法-Compiler Experiment PL0 for study syntax Analysis(LL1) of compiling principle
Platform: | Size: 1350656 | Author: Mrfu | Hits:

[ELanguageLL(1)fenxi

Description: 编译原理 LL(1)语法分析,预测分析表,分析字符窜-LL(1)yufa fenxi ,bianyi yuanli
Platform: | Size: 109568 | Author: luliang | Hits:

[ELanguageLL(1)

Description: 编译器语法分析,用于编译器的LL(1)分析-Compiler, syntax analysis, the compiler for LL (1) Analysis
Platform: | Size: 896000 | Author: zhuwentao | Hits:

[Graph RecognizeLL(1)

Description: 编译原理实验,使用C++实现的LL(1)文法识别器-Compile principle experiment, the use of C++ implementation of LL (1) grammar identifier
Platform: | Size: 452608 | Author: 张三 | Hits:

[ELanguageLL(1)Analysis

Description: 编译原理LL(1)分析算法。。。自己写的-Compiler theory LL (1) parsing algorithm. . . Wrote it myself. .
Platform: | Size: 1063936 | Author: chezai | Hits:

[CSharpLL(1)Grammer-Analysis

Description: C#实现的LL(1)文法分析器,界面是用WPF实现的。-C# implementation of LL (1) grammar analyzer, the interface is implemented using WPF.
Platform: | Size: 98304 | Author: James Mike | Hits:

[source in ebook实验二-LL(1)预测分析

Description: LL(1)预测分析,分析表和分析过程的界面友好(LL (1) forecast analysis, analysis table and analysis process friendly interface.)
Platform: | Size: 111616 | Author: 小艾321 | Hits:
« 1 2 3 4 56 7 8 9 10 ... 50 »

CodeBus www.codebus.net