资源列表
Scan
- C语言的词法分析器,界面很好看,功能也还可以-C language, lexical analyzer, a good interface, the functions can also be
preTable
- 编译原理中用C++写的预测分析表的构建,对学习编译原理以及c++程序的编写有一定帮助-Compile the principle of using C++ written forecast table to build on the preparation of learning compiler theory and c++ program will definitely help
problem4
- design a smallest sufficient set encoder and decoder to encode and decode a string of 2^16 flips of a bent coin with probabilities(p0=0.9,p1=0.1)
aCcifafenxi
- 用c语言实现的c的词法分析,简单易懂;可直接在tc中运行-use of the language c c of lexical analysis and easily understood; Directly run in tc
一个c语言词法分析例子
- C语言词法分析示例 用于指导编译原理实验报告的编写-C language lexical analysis compiled examples guiding principles for the preparation of the report experiments
Seven-segment-display-decoder
- 七段显示译码器 因为计算机输出的是BCD码,要想在数码管上显示十进制数,就必须先把BCD码转换成 7 段字型数码管所要求的代码。我们把能够将计算机输出的BCD码换成 7 段字型代码,并使数码管显示出十进制数的电路称为“七段字型译码器”。 -Seven-segment display decoder because the computer output is BCD code, in order to display in the digital tube decimal numbe
yongluo
- 词法分析器,简单而且实用用的很好啊,可以直接运行,这个是编译原理的作业-lexical analyzer, simple and practical use of a good ah, direct operation, the compiler is the principle of operation
lab3
- 用C++编写的简单的词法分析器,还请大家多多指教。-C++, written in a simple lexical analyzer, but also please the exhibitions.
c
- 一个关于概率算法的计算程序,请大家一同分享,如过有高手指点将非常荣幸-this is a program code about algebra
predictAnalysis
- 本程序主要实现预测分析表的构造,并求first和follow集-the procedure main table Forecast and Analysis, and the construction and follow for first set
GPSchengxu
- GPs测量坐标转换工具 有时间你们研究下-GPs coordinate measurement conversion tools you have time to the study
yufafenxi.rar
- 语法分析器是函数绘图语言解释器的核心,因此语法分析器的构造是整个解释权构造的关键。语法分析器的构造分为两个重要步骤:规定语言的文法和根据文风编写程序。由于采用递归下降子程序方法,因此在文法的设计上要求是LL(1)文法。具体到此绘图语言,需要构造语法树的语言结构仅限于表达式,因为后继语义处理需要对表达式求值,而对语法树进行遍历即可得到表达式的值。 我们最终构造的是递归下降的语法分析器,要求文法是LL(1)文法,因此需要对二义文法进行改造:即先将文法改写为非二义文法,消除左递归,提取公共左因子,