搜索资源列表
-
0下载:
实现c--语言的词法分析器。将一个C--语言程序分割成token串的序列。处理C--语言的所有token类型。-The realization of c- the language of the lexical analyzer. A C- language program is separated into token strings sequence. To deal with C- the language of all the token types.
-
-
0下载:
用C++写的C语言词法分析器,vc6.0开发-Written in C++, C language lexical analyzer
-
-
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
-
-
0下载:
C语言的词法分析器,可以识别C语言中的关键字、字符等信息-C language lexical analyzer that can identify the C language keywords, character and other information
-
-
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语言词法分析器,比较接近实际词法分析器-c written in imitation of C language lexical analyzer, lexical analyzer close to the actual
-
-
0下载:
C语言词法分析器,本C++代码实现了对C语言的分析。是C语言的解释器。-C language lexical analyzer, the C++ code analysis for C language. Is a C language interpreter.
-
-
0下载:
利用C语言写的一个词法分析器,文件输入输出,且生成关键字表、运算符表、分界符表-A lexical analyzer written in C language, file input and output, and generate keyword table, the operator table delimiter Table
-
-
0下载:
mini-C language lexical analyzer implementation
-
-
0下载:
C语言词法分析器,实现了对单个C语言文件分词的功能,输出结果以图形界面显示。-C language lexical analyzer, the word of a single C-language file, the output is displayed in a graphical interface.
-
-
0下载:
用C语言编写的一个简单的词法分析器
词法分析程序,能识别出所有的关键字、标识符、常数、运算符(包括复合运算符,如++)、界符 能过滤掉源程序中的注释、空格、制表符、换行符 并且能够对一些词法...
-A simple C language lexical analyzer lexical analysis program can identify all keywords, identifiers, constants, operators (including composite op
-
-
0下载:
编译原理中的词法分析器,C语言编写。报告带源码。-Compiler theory lexical analyzer, C language. The report with the source code.
-
-
0下载:
//程序实现C语言词法分析器的设计
//用到的变量
// cch 放当前字符
// q 标志保留字(1:是 0:否)
//StrToken 保留字列表
/*C语言中的保留字(32个)
auto break case char const
continue default do double else
enum extern float for goto
if int long register retu
-
-
0下载:
C语言实现词法分析器。包含可用的源代码。-C language lexical analyzer
-
-
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|..|
-
-
0下载:
词法分析器,使用C语言编写,编译原理中进行词法分析-Lexical analyzer, using the C language, compiler theory lexical analysis performed
-
-
0下载:
c语言词法分析器,输入文法,可以自动翻译出单词,有注释,可改-c language lexical analyzer, enter the grammar, you can automatically translate the words, notes, can be changed
-
-
0下载:
用C++语言实现词法分析器,包括了源代码,运行结果,界面截图-With C++ language lexical analyzer, including source code, operating results, screen shots, etc.
-