登录
首页 » Compiler program » 简单整型表达式文法按递归下降方式设计其编译程序,生成PL/0栈式指令代码,然后解释执行...

简单整型表达式文法按递归下降方式设计其编译程序,生成PL/0栈式指令代码,然后解释执行...

于 2023-05-08 发布 文件大小:9.39 kB
0 100
下载积分: 2 下载次数: 1

代码说明:

简单整型表达式文法按递归下降方式设计其编译程序,生成PL/0栈式指令代码,然后解释执行-simple integer expression by recursive grammar dropped to design its compiler, generating PL/0 Stack-code instructions, and then the interpretation and implementation of

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

发表评论

0 个回复

  • 语法分析 语法分析
    语法分析 语法分析- The grammar analysis grammar analysis grammar analyzes
    2022-06-01 16:03:08下载
    积分:1
  • Full support for extended regular expressions (those with intersection and compl
    Full support for extended regular expressions (those with intersection and complement); Support for some kinds of cycles in grammar; DFA-based operation; Unicode support; C++ only, requires a modern compiler; Lexical analyzers can be configured to get symbols from any input class (built-in support for std::istream, std::wistream and FILE *); Designed to work with Whale, but can work standalone or interface to other parsers.-Full support for extended regular expressions (those with intersection and complement); Support for some kinds of cycles in grammar; DFA-based operation; Unicode support; C only, requires a modern compiler; Lexical analyzers can be configured to get symbols from any input class (built-in support for std::istream, std::wistream and FILE*); Designed to work with Whale, but can work standalone or interface to other parsers.
    2022-05-27 12:54:56下载
    积分:1
  • 这里以开始定义的PASCAL语言子集的源程序作为词法分析程序的输入数据。在词法分析中,自文 件头开始扫描源程序字符,一旦发现符合“单词”定义的源程序字符串时,将...
    这里以开始定义的PASCAL语言子集的源程序作为词法分析程序的输入数据。在词法分析中,自文 件头开始扫描源程序字符,一旦发现符合“单词”定义的源程序字符串时,将它翻译成固定长度的单 词内部表示,并查填适当的信息表。经过词法分析后,源程序字符串(源程序的外部表示)被翻译成 具有等长信息的单词串(源程序的内部表示),并产生两个表格:常数表和标识符表,它们分别包含 了源程序中的所有常数和所有标识符。- Here starts the PASCAL language subset source program which defines to take the lexical analyaer the data-in. In the lexical analysis, starts from the article article to scan the source program character, once discovered when conforms to "the word" the definition source program character string, translates it the fixed length the word interior to indicate, and looks up fills in the suitable information table. After the lexical analysis, the source program character string (source program exterior expression) is translated has and so on the long information the word string (source program internal expression), and produces two forms: The chart and the identifier table, they have separately contained in source program all constants and all identifiers.
    2022-03-30 16:56:06下载
    积分:1
  • 为开发一产品,苦于没有相关资料,采用机器上读取
    为开发一产品,苦于没有相关资料,采用机器上读取-for the development of a product, there is no relevant information on the machines used to read
    2023-02-27 08:00:04下载
    积分:1
  • 为了实现编译器的实用,可自由编写源代码…
    为了实现的编译程序实用,源程序可采用自由书写格式,即一行内可以书写多个语句,一个语句也可以占领多行书写;标识符的前20个字符有效;整数用2个字节表示;长整数用4个字节表示。这样词法分析程序的主要工作为: (1)从源程序文件中读入字符。 (2)统计行数和列数用于错误单词的定位。 (3)删除空格类字符,包括回车、制表符空格。 (4)按拼写单词,并用(种别,单词)二元式表示。 (5)根据需要是否填写标识符表供以后各阶段使用。 这里采用的编译程序的实现方法是一遍扫描,即从左到右只扫描一次源程序,也就是词法分析作为语法分析的一个子程序。故在编写词法分析程序时,用重复调用词法分析子程序取一单词的方法得到整个源程序的二元式流。 -in order to achieve the compiler practical, available free to write source code format, that his writing can be more than words, a statement can occupy multiple lines written; identifier of 20 characters effective; Integer with two byte; long integer with four byte. This lexical analysis for major work : (1) from source document read into the characters. (2) Statistics and a few mistakes out a few words for positioning. (3) delete the blank type characters, including the carriage return, tab spaces. (4) the spelling words and use (other species, words) dual ceremony. (5) whether the need for completing the table identifier subsequent stages. Here the compilers of th
    2022-01-23 11:14:40下载
    积分:1
  • linux shell 得词法分析器,用于shell的命令解释。
    linux shell 得词法分析器,用于shell的命令解释。-linux shell a lexical analyzer for the shell command interpreter.
    2023-02-09 13:40:04下载
    积分:1
  • Captor network with C++ builder,(réseaux des capteurs) a captor network simulato...
    Captor network with C++ builder,(réseaux des capteurs) a captor network simulator
    2022-06-18 03:36:12下载
    积分:1
  • 单片机测试程式,主要是IO扩展,测试线路,开路短路,LCD显示...
    单片机测试程式,主要是IO扩展,测试线路,开路短路,LCD显示-Single-chip testing program is mainly IO expansion, testing lines, open-circuit short-circuit, LCD display
    2023-04-10 18:30:03下载
    积分:1
  • 商店销售电脑,ASP.NET写的C代码#
    shop sales computer, write asp.net code c#
    2022-02-04 21:14:45下载
    积分:1
  • 对C++进行词法和语法分析。 要求: 词法分析部分写出相应的正规集、正规式、NFA、DFA 写出语法分析所采用的方法和完成的语法分析功能...
    对C++进行词法和语法分析。 要求: 词法分析部分写出相应的正规集、正规式、NFA、DFA 写出语法分析所采用的方法和完成的语法分析功能 编写出响应的编译程序 写出完整的课程设计报告 -right for C morphology and syntax analysis. Requirements : lexical analysis to write a corresponding set of formal, formal style, NFA, DFA write syntax analysis, the method used to complete the grammar and analysis capabilities to prepare to respond to the compiler to write a complete curriculum design report
    2023-02-14 19:20:04下载
    积分:1
  • 696516资源总数
  • 106668会员总数
  • 21今日下载