资源列表
mycompiler
- I have written a source code compiler,in the hope that we can be useful-I have written a source code compiler,in the hope that we can be useful!!!
hw4-q2
- this package cotains a C++ source code an executeble file and a describtive txt file i wrote this program to revese words which are entered by user. this program complied by dev C++ 4.9.9.2 compiler.
file1
- 词法分析程序实例 算术表达式预测分析程序设计-Lexical analysis program examples。 Forecast arithmetic expression analysis program design。
Src200707022140
- 变频器调试参数的程序,1602的液晶显示器,AVR芯片,可以作为参考资料学习使用
pic16f876_Ebike
- 16F876控制的电动自行车驱动系统源程序-16F876 control of the drive system for electric bicycle source
yyfx
- 在实验三所给文法中加上语义动作,使其在语法分析的同时,产生相应的四元式序列-In the experiment three to add semantic actions to the grammar, so that in parsing the same time, resulting in a corresponding quaternary-type sequence
syntax-analysis
- 这是我从其他地方搜集过来的语法分析程序,希望对大家能有帮助-This is what I gather from other places over the syntax analysis procedures in the hope that we can to help
129
- 词法分析器的源码,能够通过各种各样的测试-lexical analyzer source, through all kinds of tests
IF-ELSE
- if-else条件语句翻译程序,LR方法,输出四元式
1
- 编译原理实验 表达式翻译器:一个中缀表达式到后缀表达式的翻译器 表达式文法及其翻译模式定义如下: expr expr + term {print(‘+’)} | expr - term {print(‘-’)}| term term term * factor {print(‘*’)} | term / factor {print(‘/’)} | factor factor ( expr ) | id {print(id.
java-scanner
- 用C语言(或 C++ )作为宿主语言完成: Java语言词法分析器的设计和实现 其中具体要求: 1. 使用DFA实现词法分析器的设计; 2. 实现对Java源程序中注释的过滤; 3. 利用两对半缓冲区从文件中逐一读取单词; 4. 词法分析结果属性字流存放在独立文件(文件名:scanner_output)中; 5. 统计源程序每行单词的个数和整个源文件单词个数; 6. 具有报告词法错误和出错位置(源程序行号和该行字符)的功能; -Using C language