Welcome![Sign In][Sign Up]
Location:
Search - SLR1

Search list

[Other resourceslr1

Description: 计算机科学与技术专业的课程设计slr算法-computer science and technology courses for professional design algorithm slr
Platform: | Size: 41759 | Author: 秦艺娟 | Hits:

[ELanguageSLR1

Description: 在VC下打开SLR1.dsp,阅读工程SLR1,SLR1为一个加、乘(适当扩充可为四则)运算表达式的SLR语法分析器
Platform: | Size: 98818 | Author: wzc | Hits:

[EditorSLR1wf

Description: slr1文法语法分析的c语言实现代码 需要输入词法分析的txt结果文件-slr1 the grammar grammar analysis c language realization code needs to input the lexical analysis the txt result document
Platform: | Size: 1693 | Author: 信仰 | Hits:

[ELanguageArithmeticSLR1

Description: 四则算术运算实现,采用的是SLR1文法包括号+,-,*,/,括号,
Platform: | Size: 2216 | Author: 9wy | Hits:

[EditorSLR1wf

Description: slr1文法语法分析的c语言实现代码 需要输入词法分析的txt结果文件-slr1 the grammar grammar analysis c language realization code needs to input the lexical analysis the txt result document
Platform: | Size: 1024 | Author: 信仰 | Hits:

[Other resourceSLRGrammar

Description: 用于生成SLR(1)分析表,并产生相应的SLR(1)分析器-used to produce SLR (1) Analysis Table, and generates the SLR (1) Analyzer
Platform: | Size: 7168 | Author: conan | Hits:

[ELanguageSLR(1)

Description: 用SLR(1)方法实现的类C语言的编译器的语义分析程序。-with SLR (1) Realization of the Class C language compiler is the semantic analysis procedures.
Platform: | Size: 296960 | Author: 魏本峰 | Hits:

[ELanguageSLR1

Description: 在VC下打开SLR1.dsp,阅读工程SLR1,SLR1为一个加、乘(适当扩充可为四则)运算表达式的SLR语法分析器-In the VC open SLR1.dsp, reading works SLR1, SLR1 is a plus, by (an appropriate expansion for 4) operator expression SLR parser
Platform: | Size: 100352 | Author: wzc | Hits:

[ELanguageArithmeticSLR1

Description: 四则算术运算实现,采用的是SLR1文法包括号+,-,*,/,括号,-Realize four arithmetic operations, using the grammar, including SLR1 No. 2B !,-,*,/, brackets,
Platform: | Size: 2048 | Author: 9wy | Hits:

[Windows Developslr1

Description: 本软件采用的是可视化集成环境,利用简单易学的VC++语言作为开发工具,使得软件不仅开发难度降低,而且较易操作实施。在运行阶段对编译的总体过程做了较为详细的说明,包括SLR(1)文法的判定,分析器的构造和一些具体的实现过程。在软件的制作过程中考虑到了界面友好,方便快捷等特点,使得本软件有很强的使用价值。-This software is based on integrated visualization environment, using simple easy to learn VC++ Language as development tools, makes software to reduce the difficulty of not only the development and implementation easier to operate. In the operational phase of the overall process of the compiler to do a more detailed explanation, including the SLR (1) grammar determined analyzer constructed and some concrete realization of the process. In terms of software production process, taking into account the user-friendly, convenient features, making this software has a strong value.
Platform: | Size: 132096 | Author: 姚磊 | Hits:

[DocumentsSLR

Description: implement SLR Parse with java. dowload from internet.
Platform: | Size: 2048 | Author: caothuy | Hits:

[ELanguageSLR1

Description: 用SLR1分析表达式文法,文法的产生式为 E->T|E+T T->F|T*F F->i|(E)-Analysis with SLR1 expression grammar, generative grammar for E->T|E+T T->F|T*F F->i|(E)
Platform: | Size: 171008 | Author: 逍遥一心 | Hits:

[Windows Developslr1

Description: slr(1),设计文档,希望对有些人帮助-slr (1), design documents, hoping for some people to help
Platform: | Size: 132096 | Author: 朱涛 | Hits:

[ELanguageLRTrans1

Description: 该程序为一个手工编码实现的简单SLR语法分析器,其词法分析器调用接口为lex(),语法分析调用接口为SLR1()。-The program is a simple hand-coded implementation SLR parser, the lexical analyzer is called interface lex (), parsing call interface for the SLR1 ().
Platform: | Size: 223232 | Author: 孔小亮 | Hits:

[ELanguageSLR1

Description: 该程序为一个手工编码实现的简单SLR语法分析器,其词法分析器调用接口为lex(),语法分析调用接口为SLR1()。-The program is a simple hand-coded implementation SLR parser, the lexical analyzer is called interface lex (), parsing call interface for the SLR1 ().
Platform: | Size: 225280 | Author: 孔小亮 | Hits:

[ELanguageLRTrans1

Description: 该程序是在实验4程序基础上实现的一个手工编码实现的简单计算器,其词法分析器调用接口为lex(),语法分析器调用接口为SLR1(),语义动作调用接口为run()。-The program is based on the experimental procedure 4, a hand-coding a simple calculator, the lexical analyzer is called interface lex (), parser call interface for the SLR1 (), semantic actions call interface to run ().
Platform: | Size: 18432 | Author: 孔小亮 | Hits:

[Software Engineering1

Description: 编译原理课程设计报告,slr1完整的实验报告-Principles of curriculum design, compile reports, slr1 complete experimental report
Platform: | Size: 165888 | Author: 魔飞 | Hits:

[ELanguageSLR1

Description: 在VC下打开LRTrans1.dsp,阅读工程LRTrans1,LRTrans1为一个加、乘(适当扩充可为四则)运算表达式的SLR语法分析器,规定其文法如下: 文法3: (0) S ->E (1) E->E+E (2) E->E*E (3) E->(E) (4) E->i 经分析其SLR(1)分析表如下(分析表按“操作符运算优先级和运算符的结合率”方法解决冲突——*优先集高于+,*和+的结合率均为左结合) -In the VC to open LRTrans1.dsp, read the works LRTrans1, LRTrans1 as a plus, by (the appropriate expansion for 4) expression is the SLR parser, the provisions of the grammar as follows: Grammar 3: (0) S' -> E (1) E-> E+ E (2) E-> E* E (3) E-> (E) (4) E-> i by the analysis of the SLR (1) of the table as follows (of the table by " operation Fu operator precedence and operator binding rate " method of conflict resolution priority set higher than the+--*,* and+ binding rate for both left-associative)
Platform: | Size: 13312 | Author: chivas | Hits:

[ELanguageCompiler1

Description: 使用C++编写的编译器,里面 包括了词法分析程序scanner.cpp,无符号数识别程序ucon.cpp,算符优先法语法语义处理程序SF.cpp,SLR1语法语义处理程序SLR1.cpp。比较强大。源程序输入有program.txt,输出包括窗口和compiled.txt-Using C++ to write compiler, which includes lexical analysis program scanner.cpp the number of symbols identification procedures ucon.cpp the the operator precedence Law syntactic and semantic processing program SF.cpp, SLR1 syntactic and semantic processing program SLR1.cpp. More powerful. The window and compiled.txt source input the program.txt, output, including
Platform: | Size: 2956288 | Author: 宋雪羽 | Hits:

[JSP/JavaLRAnalyse

Description: 程序说明: 该程序能够根据给定的文法判断它是否为LR0,SLR1,LR1,LALR1文法; 打印项目集,分析表,Go函数; 若文法属于LR1,将进行LALR1文法的判断,若属于LALR1文法,将继续打印LALR1文法的项目集,分析表和Go函数。-Program Description: The program according to the given grammar can determine whether it is LR0, SLR1, LR1, LALR1 grammar print project collection, analysis table, Go function If the grammar belongs LR1, will be judged LALR1 grammar, if the grammar belongs LALR1 , will continue to print LALR1 grammar items collection, analysis tables and Go function.
Platform: | Size: 24576 | Author: Mashiro | Hits:

CodeBus www.codebus.net