资源列表
编译原理打作业 打包
- 编译原理课程设计,包括词法,语法,语义分析,功能全面!-the class design about principle of complier.it contains analysis of word ,gram and mine about language .
lccwin32_doc
- 初学编译,这是一个用VC++写的一个编译器, 我来一个网上下的,大家可以看看!-beginners compiler, which is a VC write a compiler, I am one of the Internet, everyone can see!
pl01
- 这是一个PLO的编译器,是编译原理课程设计的一个很好的内容-This is a compiler of the PLO, is to compile the curriculum design principle a good content
状态转换
- 这是一个用flash制作的动画,用于说明编译原理中的状态转化问题-This is a production with flash animation, compiler theory used to describe the state of transformation
编译原理课程设计指导书
- 此为一编译原理的课程设计大纲,在里面可以根据大纲的要求编写相应的代码-this as a compiler theory of curriculum design outline, the outline can be inside prepared at the request of the corresponding code
李广军-0201-20-词法分析
- 编制一个词法分析程序,从输入的源程序中,分析出各个具有独立意义的单词,即基本保留字、标识符、常量、运算符、界符五大类。并依次输出每类单词,错误时记下出错的行列,出错原因,然后跳过错误部分继续分析-compiled a lexical analysis procedures from the importation of the source, the analysis of the various independent significance of the word, that is to
fydlq
- 编译原理课程设计布尔表达式输出逆波兰式运用ll(1)法-Course Design Compiler Principle output Boolean expressions using inverse Polish ll (1) Act
编译实验词法分析报告
- 编写一个C语言的子集的词法分析程序,对C语言源代码程序进行扫描,识别简单语言的基本字、标识符、无符号整数、运算符和界符等单词符号,产生的单词转换成特别码表示,形成word文件(单词序列)保存。-CCwordSequence) preservation.
001122
- 是关于算术表达式的翻译程序,有词法分析,语法分析,语义分析和三地址码生成-it is a program which is to translate the compute expression.it contains accidence analysis,gramar analysis ,lexeme analysis and three-addr code grenerate.
Pascal语言的语法分析器
- Pascal语言的语法分析器源程序和开发文档,用Yacc编写,可作为编译原理课程的学习参考,源文件已编译通过-Pascal language parser source code and documentation, prepared with Yacc, as compiler theory courses of study reference source documents compiled by
简单的YACC程序
- 目的:通过编写简单的YACC程序熟悉YACC词法分析工具的基本用法,及词法分析器的设计思路。编写包括赋值语句、if语句以及含有加合乘运算的表达式等语法结构的pascal子集语言的语法分析器。 功能:程序由两个模块LEX和YACC构成,YACC使用LEX分析后的正规单词输出流-Objective : to prepare a simple procedure with YACC YACC lexical analysis of the basic tools to use, and the lex
某小型语言的预测分析器
- 设计一个小型语言,要求有基本的程序语句,给出该小型语言的LL(1)文法,用预测分析法实现对该小型语言的LL(1)文法的语法分析。