搜索资源列表
C++cifafenxiqi
- 针对C++的简单词法分析器,局限性较大,算法简单,易懂,导入词法文件,输出分析结果-against C simple lexical analyzer and limitations larger, the algorithm is simple, understandable, import documents morphology, Output analysis
cmm
- 简单C编译器生成的目标代码是8086的汇编代码(16位),可以在一般的PC上被像MASM之类的汇编编译程序编译,生成可执行文件后,在DOS或Windows控制台下运行。 实现的语言定义如下: 语言类似于tiny语言,不支持过程调用,也就是只有一个main函数,无其他函数和全局变量 基本语句:注释语句(/*…*/),输入语句(int input(void) ),输出语句(void output(int) ),赋值语句。这里的输入输出语句实际上类似于函数调用,可以看作是本语言内部的函数
c
- c编译器的lex,yacc文件,很简单,几分钟就能看懂。
C
- 本人写的简单C词法分析器,能基本实现C词法分析。可以供要求不是很严格的毕业设计。
一个简单的C语言编译器
- 一个简单的C语言编译器-a simple C language compiler
c
- 简单的词法分析小例子- Simple lexical analysis small example
EP2
- C语言编写的简单计算程序的语法分析器,可以识别一定的计算功能-C language prepared by the simple calculation procedure syntax analyzer can identify certain computing capabilities
cifafenxiqi
- C语言的词法分析器,功能比较简单,可识别部分关键字,变量,常量,标识符。-C language lexical analyzer function is relatively simple to identify some keywords, variables, constants, identifiers.
lexer
- 采用递归下降的语法分析器,语法为简单的fortran语言-Decline in the use of recursive parser, grammar for simple fortran language
lex
- 用C语言实现了简单的词法分析功能,用户输入任意字符串,程序输出经分析后的token序列-Using C language to achieve a simple lexical analysis function, the user to enter arbitrary strings, the program output by the analysis of the token sequence
tiger
- 老虎机,同学作业,简单C实现,1234567890-small game Friend s homework for Fudan University
lexicalanalyzer
- 一个简单的C词法分析器,c语言编写,通俗易懂-A simple C lexical analyzer, c language, user-friendly
Compiler
- 编译课上做的小程序,用四种分析方法分别实现(LL1,算符优先,递归下降,简单词法分析) 完成对正则文法所描述的Pascal语言子集单词符号的词法分析程序。 <标识符>→字母︱ <标识符>字母︱ <标识符>数字 <无符号整数>→数字︱ <无符号整数>数字 <单字符分界符> →+ ︱- ︱* ︱ ︱(︱) <双字符分界符>→<大于>=︱<小于>=︱<小于&g
LexicalAnalysis
- 用C++编写的一个简单C语言词法分析器,把需要分析的内容保存在C:\input.txt,分 析完毕好保存在C:\output.txt-Using C++ to prepare a simple C language lexical analyzer, the need to analyze the contents stored in C: \ input.txt, finished the analysis of well preserved in the C: \ output.txt
Ccifafenxi
- c语言词法分析程序的实现,实现了简单的词法分析-c language lexical analysis procedures to achieve
paser
- 一个简单的语法分析器实现,采用的是自顶向下的算法,结构清晰,容易理解,适合初学者学习。-Parser A simple realization is based on top-down algorithm, the structure of clear and easy to understand for beginners to learn.
C-Compiler
- C-编译器,包含词法分析语法分析,中间代码生成,操作简单-C-compiler, lexical analysis contains syntax analysis, intermediate code generation, easy
C-Free4.0
- 很简单方便的C/c++编译器 很实用 不知道论坛里有没有源 冒昧发一下-Is very simple and convenient C/c++ compiler does not know the forum very useful source of liberty have made about
c-compiler
- 简单c语言语法的编译器,用c语言实现,包括词法语法和语义分析-c compilateur
基于C-语言的词法分析及语法分析
- 学生在学习《编译原理》课程过程中,结合各章节的构造编译程序的基本理论,要求用C或C++语言描述及上机调试,实现一个 C-Minus 小编译程序(包括词法分析,语法分析等重要子程序),使学生将理论与实际应用结合起来,受到软件设计等开发过程的全面训练,从而提高学生软件开发的能力。