简单优先文法的判定及分析器的构造

时间:2013-07-09 22:23:41
【文件属性】:

文件名称:简单优先文法的判定及分析器的构造

文件大小:199KB

文件格式:RAR

更新时间:2013-07-09 22:23:41

优先文法 判定

摘 要 编译程序的工作过程通常是词法分析、语法分析、语义分析、代码生成、代码优化。编译程序的这些过程的执行先后就构成了编译程序的逻辑结构,但是这些逻辑结构不一定是按照某一个固定顺序的,也有可能是按照平行或者互锁的方式执行的。 本次课程设计是就简单优先文法原理来做一个简单优先分析器。简单优先分析文法的基本思想是对一个文法按一定的原则求出该文法所有符号包括终结符和非终结符之间的优先关系,按照这种关系确定规约过程中的句柄,它的规约过程实际上是规范规约。在算法实现过程中,主要使用visual C++进行编程。 关键字 简单优先关系 大于关系 小于关系 等于关系 Abstract Compiler of the process is usually lexical analysis, grammar analysis, semantic analysis, code generation, code optimization. Compiler of the implementation of these processes have posed a compiler on the logical structure, but these may not necessarily be in accordance with the logical structure of a fixed order, may also be in accordance with the parallel or interlocking approach to the implementation of the. This course is designed on the simple principle of priority to do a simpegrammar priority Analyzer。Simple grammar priority of the basic idea of a grammar obtained by certain principles of the grammar, including all the symbos at the end and at the end of the non-priority, according to this relationship in the process of determining the statute handler, it is actually the process of regulating the Statute of the Statute. In the algorithm process, the main use of visual C programming. Key Words Simple priority relations Over relations Less than relations Equal relations 目 录 摘要…………………………………………………………………………………………2 一、概述……………………………………………………………………………………4 (一)实验环境与开发工具 ………………………………………………………‥4 (二)简单优先文法简介 ……………………………………………………………4 (三)基本概念 ………………………………………………………………………4 (四)优先关系 ………………………………………………………………………4 二、需求分析 ……………………………………………………………………………5 (一)总体功能需求 …………………………………………………………………5 (二)系统的主要功能函数 …………………………………………………………5 (三)系统的设计思想 ………………………………………………………………6 三、详细设计 ……………………………………………………………………………7 (一)等于关系模块 …………………………………………………………………7 (二)小于关系模块 …………………………………………………………………8 (三)大于关系模块 …………………………………………………………………10 (四)句子识别模块 …………………………………………………………………12 四、测试结果………………………………………………………………………………16 五、小结……………………………………………………………………………………19 六、参考文献 ……………………………………………………………………………20 附录 源程序 ………………………………………………………………………………21 一、概述 (一)、实验环境与开发工具 1、硬件环境: 处理器Intel Pentium Dual-Core inside 内存 1G 硬盘 160G 512M nvidia显卡 2、软件环境: 基于XP操作系统的VC++6.0 (二)、简单优先文法简介 简单优先分析文法按一定的法的基本思想是对一个文法按一定的原则求出该文法所有符号包括终结符和非终结符之间的优先关系按照这种关系确定规约过程中的句柄,它的规约过程实际上是规范规约。简单优先分析法准确、规范,但分析效率很低,实际使用价值不大。 (三)、基本概念 简单优先文法,必须满足以下条件: 1、在文法符号集V中,任意两个符号之间最多只有一种优先关系成立。 2、在文法中任意两个产生式没有相同的右部。 其中第一条不许满足是显然的,第二条要是不满足则会出现归约不唯一。 (四)、优先关系 简单优先分析法是按照文法符号(终结符和非终结符)的优先关系确定句柄的。首先定义优先关系的表示: 1、X=Y 表示X和Y的优先关系相等。 2、X> Y 表示X的优先性比Y的优先性大。 3、XY 当且仅当G中存在产生式规则A→…BD…,且B→…X和D→Y…


【文件预览】:
简单优先文法的判定及分析器的构造.doc

网友评论