搜索资源列表
-
0下载:
C语言实现的SIMPLE语言词法分析器,并用JAVA实现界面。-the C language SIMPLE language lexical analyzer and used JAVA interface.
-
-
0下载:
C语言词法分析器。可以给出一段简单的程序进行分析。-C language lexical analyzer. It is a simple procedure for analysis.
-
-
0下载:
词法分析器源程序,用c语言编写的,for c-minus-lexical analyzer source with the c language, for c-minus
-
-
0下载:
用c#编写的c语言词法分析器,预处理注释,并使用数据库查询关键字.
注意数据库需要重新连接,使用microsoft jet 4.0,数据库文件为keytable.mdb-prepared with the c language lexical analyzer, pretreatment Notes and the use of database queries. databases need to re-connect microsoft used jet 4.0, database fi
-
-
0下载:
一个C语言词法分析器,一般本科生课程设计都用得上-a C language lexical analyzer, the general undergraduate curriculum design are useful
-
-
0下载:
C语言书写的词法分析器,功能不是很完善,请多指教-written in C language lexical analyzer, function is not perfect, please enlighten
-
-
0下载:
这是用VC++6.0编写的一个简单的c语言的词法分析器,个人感觉良好,简单又实用。,This is the VC 6.0 of a simple preparation of the c language lexical analyzer, personal feel good, simple and functional.
-
-
0下载:
C语言词法分析器
实现简单的词法分析,是编译原理的课程设计之一-C language lexical analyzer to achieve a simple lexical analysis is compiled one of the principle of curriculum design
-
-
0下载:
C语言 词法分析器。
(1) 可以识别出用C语言编写的源程序中的每个单词符号,并以记号的形式输出每个单词符号.
(2) 可以识别并读取源程序中的注释.
(3) 可以统计源程序中的语句行数、单词个数和字符个数,其中标点和空格不计算为单词,输出统计结果.
(4) 检查源程序中存在的非法字符错误,并可以报告错误所在的行列位置.
(5) 发现源程序中存在错误后,进行适当的恢复,使词法分析可以继续进行,通过一次词法分析处理,
可以检查并报告源程序中存在的所有词法拼写错误.-C l
-
-
0下载:
词法分析器(编译原理)
Java语言词法分析器的设计与实现-Lexical Analyzer (Compilation Principle) Java language lexical Analyzer Design and Implementation
-
-
1下载:
使用LEX和yacc实现的C—语言的词法分析器和语法分析器,采用的是LALR算法,完整的编译原理实验报告-LEX and yacc use to achieve the C-language lexical analyzer and parser, LALR uses algorithms to compile a complete report of principle experiment
-
-
0下载:
C语言的词法分析器,界面很好看,功能也还可以-C language, lexical analyzer, a good interface, the functions can also be
-
-
0下载:
C语言的词法分析器,功能比较简单,可识别部分关键字,变量,常量,标识符。-C language lexical analyzer function is relatively simple to identify some keywords, variables, constants, identifiers.
-
-
0下载:
C语言词法分析器,用于实现C语言的词法分析,编写语言为C。-C language lexical analyzer, used to implement the C language, lexical analysis, the preparation of language is C.
-
-
0下载:
C语言词法分析器源代码,用于实现C语言的词法分析。-C language lexical analyzer source code used to implement the C language, lexical analysis.
-
-
0下载:
C语言词法分析器,本C++代码实现了对C语言的分析。是C语言的解释器。-C language lexical analyzer, the C++ code analysis for C language. Is a C language interpreter.
-
-
0下载:
用MFC实现的C语言词法分析器,是学习编译原理的不错的参考资料,本程序用VS2010编写,此词法分析程序可分析出C语言中:
标识符(以字母或下划线开头,后面可以是数字字母或下划线)
字符串常量
字符常量
整数常量
普通实型
有+/-科学记数
无+/-科学记数
注释说明,还不能处理预处理命令33种运算符说明:,() [] .在界符中有,这里出 , ? : sizeof 也没给出11种分界符32种关键字程序使用转换表设计,运行速度快,本人还对每个能识别的符号
-
-
0下载:
编译原理实验 词法分析器 C++代码编写,基于DEVC-Compiler principle experiment lexical analyzer
-
-
0下载:
C语言词法分析器,实现了对单个C语言文件分词的功能,输出结果以图形界面显示。-C language lexical analyzer, the word of a single C-language file, the output is displayed in a graphical interface.
-
-
0下载:
1、该个词法分析器要求至少能够识别以下几类单词:
a.关键字:else if int return void while共6个,所有的关键字都是保留字,并且必须是小写;
b.标识符:识别与C语言词法规定相一致的标识符,通过下列正则表达式定义:ID = letter (letter | digit)*;
c.常数:NUM = digit digit*(.digit digit* |ε)(e(+ | - |ε) digit digit* |ε),letter = a|..|z|A|..|
-