登录
首页 » Compiler program » 编译原理程序之词法分析器

编译原理程序之词法分析器

于 2022-08-13 发布 文件大小:17.40 kB
0 153
下载积分: 2 下载次数: 1

代码说明:

编译原理程序之词法分析器- Translation principle morphology of analyzer procedure

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 用于进行递归下降分析法,编译原理,运行环境为Visual Stdio c++6.0...
    用于进行递归下降分析法,编译原理,运行环境为Visual Stdio c++6.0-Be used for recursive descent analysis, compiling principle, operating environment for Visual Stdio c++6.0
    2022-04-23 13:01:40下载
    积分:1
  • A VisualC++ Realize the C
    一个VisualC++实现的C-语言的编译器-A VisualC++ Realize the C-language compiler
    2022-07-02 02:14:29下载
    积分:1
  • 编译原理课程设计,词法分析,语法分析,语义分析等。
    编译原理课程设计,词法分析,语法分析,语义分析等。-compiler theory curriculum design, lexical analysis, grammar analysis, semantic analysis.
    2022-08-16 07:12:43下载
    积分:1
  • 编译原理―LL(1)文法分析器(1.0) 求LL(1)文法的FOLLOW集合工具: 软件读入一个LL(1)文法,生成其FOLLOW集合。...
    编译原理―LL(1)文法分析器(1.0) 求LL(1)文法的FOLLOW集合工具: 软件读入一个LL(1)文法,生成其FOLLOW集合。-compiler theory-LL (1) grammar analyzer (1.0) for LL (1) grammar FOLLOW Set tools : software read an LL (1) grammar, generating its FOLLOW pool.
    2022-01-26 06:18:06下载
    积分:1
  • bilangan project that I do in my lab
    bilangan project that I do in my lab
    2022-02-20 12:05:47下载
    积分:1
  • bison源代码.bison 是替代yacc的语法分析程序生成器. yacc是 Yet Another Compiler Compiler的缩写. bison又...
    bison源代码.bison 是替代yacc的语法分析程序生成器. yacc是 Yet Another Compiler Compiler的缩写. bison又是什么呐 是一个生成可以分析文本文件结构的程序的程序. 用户不用直接编写程序而只用确定好如何分析这些文本文件的规则就可以了. 这种文本结构应用的例子举不胜举, 其中一个就是计算器(calculator).-bison source code. Bison is a replacement generates a syntax analysis program generator. Yacc yes Yet Another Compiler Compiler"s initials. What is the bison Na is a generation of text files can be analyzed the structure of procedures procedures. users need not directly preparation procedures identified only as good Dr analysis of these text files on the rules. This text structure Application examples abound. which is a calculator (calculator).
    2023-05-26 21:20:03下载
    积分:1
  • 编译原理 词法分析器 识别标识符,关键字,运算符,常量,界符包括出错处理...
    编译原理 词法分析器 识别标识符,关键字,运算符,常量,界符包括出错处理-compiler theory lexical analyzer identification identifiers, keywords, Operators, constants, and address sector including error handling
    2022-02-05 17:06:25下载
    积分:1
  • 我的编译原理大作业,自动分析语法,判断语句是否符合规则。DFA即有穷自动机。因为这个工作量比较大,所以恕我不无帐号发放了。...
    我的编译原理大作业,自动分析语法,判断语句是否符合规则。DFA即有穷自动机。因为这个工作量比较大,所以恕我不无帐号发放了。-I build large operating principle, automatic syntax analysis, judgment statement with the rules. DFA that the DFA. Because the workload is bigger, it is not without regret that I paid the account.
    2022-03-31 09:27:27下载
    积分:1
  • 由于时间紧迫及事先准备不足,编译器最后定型时暴露出不少问题及不足之处,主要有以下一些方面:   不支持数组数据类型,这是文法分析器设计时的一个疏漏,由于时间关系...
    由于时间紧迫及事先准备不足,编译器最后定型时暴露出不少问题及不足之处,主要有以下一些方面:   不支持数组数据类型,这是文法分析器设计时的一个疏漏,由于时间关系,最后只得把扫描器中已做好的相关的数组部分删去。   对于float数据类型的支持,直到语义分析都是正常的,也能生成相应的汇编代码,但由于我们对8086/8088指令系统本身了解不足,这样的汇编代码将只能做到含义上完全忠实于源程序,但不能运行。   对于局部变量的支持,则于时间紧迫,所有的局部变量全被处理成静态变量。使递归函数不能得到正确的结果。    对于函数调用语句,不进行参数匹配检查,如果参数数量不对,也将能通过编译,但运行时将产生非法操作。   对&& !等逻辑操作在最后生成代码时处理比较粗燥,生成的代码在逻辑复杂时将不能保证运行正常。   接下来有一些,不能说是缺陷,但必须说明的问题:   对于main函数,没有参数表,通回类型也必须为void,但如果写上参数表及其他返回类型也能编译通过,生成代码时将简单地忽略,不影响最后的代码的运行。   对于while,for,if语句,其语句体不管是一句还是多句,必须都有{}围起来。这跟C语言中若是一句则可省略{}不同。-Due to the time constraints and lack of preparation in advance, the compiler finalized when exposed numerous problems and shortcomings, mainly in the following aspects : no support for array data type, which is grammar analyzer design of an omission, because of the time, the final could only have scanners do phase customs array deleted. For float data types of support until semantic analysis is normal, and can generate the corresponding assembly code, but because of our 808
    2022-01-26 16:03:11下载
    积分:1
  • 小型的词法分析代码
    小型的词法分析代码- Small lexical analysis code
    2022-07-27 02:25:15下载
    积分:1
  • 696516资源总数
  • 106668会员总数
  • 21今日下载