资源列表
wordany
- 一个C的词法分析程序- A C lexical analyaer
lexical
- 一个简单词法分析器- A simple morphology analyzer
Analysis
- 简单的词法分析程序 只供初学者参考学习 只能简单匹配 "" // [] () {}-A simple lexical analysis program
fcm
- programme de classification fuzzy c-means
WinMenu
- simple hello world example
turbo_sys_demo
- turbo的译码程序,还可以,需要的可以下载看看,不需要的也可以
compile_words
- 编译器之词法分析,可以分析类C语言 包括<=的处理,里面有详细注释-compiler device lexical analysis, analysis of category C language including lt; = Handling, there are detailed notes
lya
- 词法分析程序的C语言程序框架,加深对词法分析原理的理解-lexical analysis procedure of the C Programming Language framework of lexical analysis to deepen the understanding of the principles
VFDHT
- vfd ht modifiedd for 8202
i2c_top
- This a code for Verilog for I2C-This is a code for Verilog for I2C
GPSchengxu
- GPs测量坐标转换工具 有时间你们研究下-GPs coordinate measurement conversion tools you have time to the study
yufafenxi.rar
- 语法分析器是函数绘图语言解释器的核心,因此语法分析器的构造是整个解释权构造的关键。语法分析器的构造分为两个重要步骤:规定语言的文法和根据文风编写程序。由于采用递归下降子程序方法,因此在文法的设计上要求是LL(1)文法。具体到此绘图语言,需要构造语法树的语言结构仅限于表达式,因为后继语义处理需要对表达式求值,而对语法树进行遍历即可得到表达式的值。 我们最终构造的是递归下降的语法分析器,要求文法是LL(1)文法,因此需要对二义文法进行改造:即先将文法改写为非二义文法,消除左递归,提取公共左因子,