资源列表
grammar
- 编译原理实验的语法分析器,实现语法分析器的基本要求-Parser compiler principle experiment, to achieve the basic requirements of the parser
middle-code
- 编译原理实验的语法分析与中间代码生成,可生成四元式-Compiler Principle Experiment syntax analysis and intermediate code generation
snake
- /*--- --- -----编译过程使用的头文件*/ #include<graphics.h> #include<stdlib.h> #include<dos.h> /*-----------------宏定义用到的数量关系(键盘上、下、左、右按键的值)*/ #define N 200 #define LEFT 0x4b00 #define RIGHT 0x4d00 #define DOWN 0x5000
BPAnn
- 标准的BP神经网络程序,每步均有详细的讲解,适合初学者参考-Standard BP neural network program, each step are detailed explanations, suitable for beginners reference
333
- 用C语言实现了字符优先算法,如入二元式,输出分析过程-Realization of the character-first algorithm
LR
- 编译原理LR算法多版本大合集,可以参考一下。希望对大家有帮助-Compiler theory LR algorithm for multi-version large collection, you can reference. We hope to help
Lexical
- java语言编写的,对c语言的编译器,包括词法和语法分析器,在水仙花数程序上测试通过-java language the c language compiler, including lexical and syntax analyzer, the daffodils on the test program
ZlgISP_900
- 单片程序仿真工具,用于单片机串口在线编程,下载源代码-Monolithic program simulation tool for microcontroller serial online programming, download the source code
code
- 北邮大三上编译原理,语法分析程序源代码,有:LL(1)语法分析算法,LR(1)语法分析算法。-BUPT junior on compiler theory, syntax analysis program source code, there are: LL (1) parsing algorithm, LR (1) parsing algorithms.
tcc-0.9.24
- 一款C语言编译器,适用于Windows和Linux。-Prepared for the C language compiler for Windows and Linux.
aula1
- Simple program that show how to configure switchs in an I/O board.
HuffmanTree
- 该系统应具有以下功能: (1) I:初始化(Initialization)。从终端读入字符集大小n,以及n个字符和n个权值,建立哈夫曼树,并将它存于文件hfmTree中。 (2) E:编码(Encoding)。利用已建好的哈夫曼树(如不在内存,则从文件hfmTree中读入),对文件ToBeTran中的正文进行编码,然后将结果存入文件CodeFile中。 (3) D:译码(Decoding)。利用已建好的哈夫曼树将文件CodeFile中的代码进行译码,结果存入文件TextFile中。