-
-
-
Scanner.rar
一个能够分析三种整数、标识符、主要运算符和主要关键字的词法分析程序。
㈠、基本要求:
标识符 <字母>(<字母>|<数字字符>)*
十进制整数 0 | (1|2|3|4|5|6|7|8|9)(0|1|2|3|4|5|6|7|8|9)*
八进制整数 0(1|2|3|4|5|6|7)(0|1|2|3|4|5|6|7)*
十六进制整数 0x(0|1|2|3|4|5|6|7|8|9|a|b|c|d|e|f)(0|1|2|3|4|5|6|7|8|9|a|b ...
-
-
S_Scanner.rar
完整的S语言词法分析器,
包含文件说明:
parser.cpp 词法分析C++源码
Scanner.exe 词法分析程序
key.txt 是关键字表
s.txt 测试源码表
程序运行生成:
symble.txt 符号表
token.txt 单词表
-
Scanner.rar
/利用递归下降分析程序,解决下列满足LL(1)条件的文法
//消除递归前的文法 消除递归后的等价文法
-
PE_Labs.rar
... this program will inform you about what i consider to be the most important pieces of information about a given PE file.
PE scanner,analizer,call it whatever.
Maybe the most usefull feature is the one concerning the import table.
Ok enough! go and try ...
-
-
-
-
scanner.rar
一个包含详细注释的扫描器C源代码。在程序语言中,语法包含了一个抽象的模型,所有格式良好的代码单元(即源文件)都必须匹配。
-