资源列表
sy1
- 命令解释程序设计源码,大三实验报告源代码-Command interpreter programming source code, source code for junior Experimental Report
18F2550_USB_HID
- this file is for hid impl閙entation on pic
LL1Analysis
- 一个简单的LL(1)分析表生成器,根据文法输入判断是否是LL(1)文法,并生成分析表。 使用VS2008 Sp1调试通过-A simple LL (1) analysis table generator, according to the grammar input to determine whether it is LL (1) grammar, and generate analysis table. Debugging through the use of VS2008 Sp1
NewTextDocument
- this is k3c bot from d2hackers.org
Asc2pas
- Converte sources em Assembler para Pascal.
5_758_2
- 这个文件是maxplus的lincese,全的!用lincsse setup 即可安装它-This file is maxplus the lincese, all of the! It can be installed with lincsse setup
dcc
- Manual/ebook for using Diab Compiler and developing code in C. Use this to learn about the installation procedure to be followed for installing diab 4.2b compiler in xp OS. This file helps in understanding various commands involved in diab compiler -
JVM
- java的虚拟机,好好用的。用机会用的朋友,这是你的你好友-java virtual machine, properly used. With the opportunity to use a friend, this is your friend for you
test2
- 编译原理 文法 的 输入 与 输出代码-bianyiyuanli
sufu
- 三个程序,也就是编译原理课程的几个实验。-Three procedures, that is, to compile a few experimental principles of the course.
cifafenxi
- 简单词法分析器构造在开始状态,首先要读进一个字符。若读入的是一个空格(包括blank,tab,newline)就跳过它,再继续读字符,直到读进一个非空字符为止。 在标识符状态,识别并组合出一个标识符之后,还必须加入一些动作,以便查保留字表,确定识别出的单词符号是保留字,还是用户自定义标识符,并输出相应的记号。 在无符号数状态,可识别出各种常数,包括整数在内。在组数的同时,还要做从十进制数到二进制数的转换。 -A simple lexical analyzer constructed
ll(1)fenxi
- 本程序是采用的LL(1)方法进行的语法分析,而LL(1)的分析方法是属于自上而下的方法。 自上而下分析的基本思想是:对任意输入串,试图用一切可能的方法,从文法开始符号(根结点)出发,自上而下为输入串建立一棵语法树。从推导的角度看,它是从文法的开始符号出发,反复使用各种产生式,寻找与输入串匹配的推导。 在输入之前必须要进行该文法是不是LL(1)文法的判断,然后再构造相应的LL(1)分析表来用预测分析方法进行语法分析,依据下面的文法及分析表来设计程序实现预测分析的分析过程。