资源列表
lua-5.1manual(chinese)
- lua的速查中文手册,由c程序员开发的,和c结合最紧密的教本。参见www.lua.org-lua s Info Chinese manual, developed by the c programmers, and c combined with the most closely textbooks. See www.lua.org
UEStudio_Greendown
- 这个是一个编译器,这个编译器可以对很多不同的文件进行编译,是大多数软件公司都在使用的编译器,大多情况下都是对后台程序进行编译的,大家可以试一试,挺好用的-This is a compiler, the compiler can be many different documents compiled, the majority of software companies are using the compiler, most of the cases of the background pro
cifafenxi
- 指针、数组、字符串编程实例 ——词法分析程序-Pointer, array, string programming examples- lexical analysis program
memory
- 最优算法实现存储管理,实现了存储空间的分配和回收-Optimal storage management algorithm to achieve the storage space allocation and recovery
lexer
- 编译原理词法分析程序,可以将tinyC代码转换为中间代码,并可简单的进行一些预处理和错误分析-Compilation Principle lexical analysis procedures, tinyC code can be converted to intermediate code, and simple to carry out some pre-processing and error analysis
LRCompiler1.0
- 这是我用VC6.0(用了MFC类库)编写的一个集词法分析、语法分析为一体的程序,是我编译原理课程设计的拙作!压缩包里包括源代码、测试数据,可执行文件打包,安装文件打包,课程设计文档,程序使用说明和数据规范说明一应俱全。-This is what I used VC6.0 (using the MFC class library) to prepare a set of lexical analysis, grammar analysis of the procedure as a whole,
scanner(liwenkaitop)
- 这是用VC6.0开发的集词法分析、语法分析、语义分析为一体的一个程序,是我在编译原理课程设计后期和同班一贼牛的哥们儿老胡共同研究的,做编译课设的朋友们不妨下来看看。语法分析采用的是算符优先分析法,语义生成的是四元式,符号集等格式处理方面基本是遵照大连理工出版的《编译原理》一书附的Simple语言来设计的。由于是自己的课余研究,当时没什么文档和维护的概念,因此没有留下文档,事隔一年半之后我也没有再研究它的动力了,看懂了的朋友不妨写个文档传上来告诉我一声!先此谢过了!-err
expanalyse
- 简单的编译器源代码。是编译试验作业,希望那个大家都喜欢。-Simple source code compiler. Pilot operation is to compile, in the hope that everyone likes.
pl0
- c++语言编写的PL0语言的语法分析程序,可实现此法分析,语法分析,中间代码生成,以及程序运行-c++ languages PL0 language parser can be realized in this analysis, syntax analysis, intermediate code generation, as well as the program runs
SPI
- avr单片机中SPI(AT90S8535)很好用-avr MCU SPI (AT90S8535) with very good
project
- 编译原理词法分析源代码(dev c++)-Principles of lexical analysis compiled source code (dev c++)
suanfuyouxianfenxiqi
- 【目的】 设计一个算符优先分析器,理解优先分析方法的原理。 【要求】 使用算符优先分析算法分析下面的文法: E’ → #E# E → E+T | T T → T*F | F F → P^F | P P → (E) | i 其中i可以看作是一个终结符,无需作词法分析。具体要求如下: 1. 如果输入符号串为正确句子,显示分析步骤,包括分析栈中的内容、优先关系、输入符号串的变化情况; 2. 如果输入符号串不是正确