搜索资源列表
scosrc
- sco unix 前台界面开发程序,采用UNIX中的词法分析器和语法分析器,可以快速产生前台界面,无需数据库支持。-sco prospects interface development process, using the UNIX lexical analyzer and parser can quickly generate prospects interface, without database support.
elex-0.1
- 用于词法分析的词法分析器-for lexical analysis of the lexical analyzer
CMMCompiler
- 一个CMM语言的词法分析器,值得一看!相信对你会有帮助-CMM language a lexical analyzer, worth a visit! Believe will be helpful for you
javascanner
- 一款java词法分析器,输入需要进行此法分析的文明,可以对其进行此法分析,并输出相应的属性字流。-Java a lexical analyzer, enter the required analysis of this civilization, this method can be analyzed and the properties of the corresponding output word stream.
TokenAnalyze
- 编译原理实验,实现词法分析器。读入输入字符并判断是否符合词法约束。-Compiler Construction Principles experiment, to achieve lexical analyzer. Read into the input character and determine whether the lexical constraints.
cparser
- 词法分析器,做的比较好。有完整的资料和注释,一个蛮好的作品-Lexical analyzer, to do better. Have complete information and comments, one works just fine
ciifafenxi
- 词法分析器 可分析简单词法、数字和符号等 编译原理实验-Simple lexical analyzer can analyze lexical, numbers and symbols such as compiler theory test
cifa
- 词法分析器一个 c语言的词法分析器,简单实用-A lexical analyzer
aaa
- VC++语言编写的一个简单的词法分析器实现词法分析功能-Written in VC++ lexical analyzer to achieve a simple lexical analysis function
analyzer
- CMM 语言的词法分析器(C++语言编写)-CMM language lexical analyzer (C++ language)
cifa
- 通过手工构造词法分析器,理解词法分析的过程原理,从而更好的理解编译原理。 通过构造过程中代码的编写,锻炼自己动手解决问题的能力和编程能力。 -Lexical analyzer constructed by hand, understanding the process of lexical analysis principles in order to better understand the compiler theory. Through the process of prepar
HW2
- 编译原理——词法分析器,语法分析器,用C实现-Compiler theory- lexical analyzer, parser, with the C implementation
Lexical-analyzer
- c++写的词法分析器,编译原理肯定会用到,上传上,大家看看哈-c++ to write the lexical analyzer, compiler theory will certainly be used, upload, and we look ha
calc2
- 是个简单的词法分析器,可以检测多项语法,是编译器的前端-Is a simple lexical analyzer can detect a number of syntax, the compiler front-end
Complier
- 编译原理词法分析器,识别标识符、关键词、操作码。-Compiler theory lexical analyzer to identify identifiers, keywords, opcode.
LR
- LR词法分析器,用C++编写的简单的一个LR词法分析器-The LR lexical analyzer C++ written a simple LR lexical analyzer
2
- 词法分析器,利用了C++的文件,可以识别数字,字母,标示符等-Lexical analyzer, using the C++ files can identify numbers, letters, identifier
animation
- .A Token is an occurence of a term from the text of a field. It consists of a term s text, the start and end offset of the term in the text of the field, and a type string. The start and end offsets permit applications to re-associate a token with it
cifafenxi
- C++语言的词法分析器,非常智能化,适用于大多数课程设计的要求。-C++ language lexical analyzer, very intelligent, for most curriculum design requirements.
lexical-analyzer
- 编译原理实验报告 实验一:词法分析器 实验目的: 实现TINY+语言的词法分析程序(扫描程序) 实验内容: 1、词法分析器输入输出 扫描程序的输入是源代码文件,输出是token串。 2、需要遵循“最长串匹配原则”,如匹配字符串‘:=’ 为赋值操作符,而不是冒号和等号两个操作符。 Token 以键值对 (Kind, Value)的形式表示。下面的符号表示不同的token类别(即Kind的取值) KEY 表示保留字 SYM 表示特殊符号 ID 表示标识符