编译原理自测题2014_第1页
编译原理自测题2014_第2页
编译原理自测题2014_第3页
编译原理自测题2014_第4页
编译原理自测题2014_第5页
已阅读5页,还剩3页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、Delegates, staff: Hello! in the run-up to the Spring Festival, we held one session of four staff representatives Conference 2013-workshop, full back in 2012, careful analysis of the current situation, discuss 2013 development plans. Here, on behalf of my company 2013 work reports to the General Asse

2、mbly, for consideration. Pillar I, 2012 back in 2012, XX power companies adhere to the party's 17 great spirit for guidance, comprehensively implement the scientific concept of development, promoting cost-leadership strategy, standards, focus on implementation, lean management, continuously impr

3、ove, smooth present safety situation of enterprise management, business management and control scientific and standardized, and the dedication of staff, manage a harmonious and democratic atmosphere of the good situation. Main indicators are as follows:-the battery indicator: power generation totale

4、d 7.815 billion kWh, beyond the annual budget implementation capacity of 315 million kWh, an increase of 757 million kWh. Sales totaled 7.425 billion kWh, exceeding sales of 330 million kWh the annual Executive budget, an increase of 729 million kWh. -Security measures: unplanned outages 2.5 times.

5、No personal injury accident occurred, no major accident and above, no major fire accidents without environmental pollution accidents, safety for three consecutive years to maintain stability to good posture. Business financial indicators: total profits of 255 million Yuan, beyond the annual budget o

6、f 207 million Yuan, beyond the Datang company index 41.89 million Yuan, an increase of 1.76 million Yuan, FCM assessment at grade four. -Energy: power supply standard coal completing 312.25 g/kWh, down 0.1 g/kWh; integrated auxiliary power consumption ratio in 5.12%, down 0.26%; pollutant emissions

7、performance greatly reduced compared to last year, carbon 0.09 g/kWh, sulfur dioxide 0.104 g/kWh NOx 0.512 g/kWh; dust removal efficiency of more than 99.8%. -Reliability index: equivalent availability factor in 93.47%, increased 7.95% from a year earlier. Equivalent forced outage rate 0.08%, 0.16%

8、reduction over the same period a year earlier. Major achievements: first, we should adhere to the two "management system" basis, strengthening technological research, strengthen hidden hazards control and intrinsic safety Enterprise construction took new steps. -The two "management sy

9、stem" for improvement. Focus on promoting the power of the company management system and the application and implementation of the safety loop five-star management system, improve the safety management system, realize the system of safety control. Further regulate security routines, safety supe

10、rvision and management network role to play to achieve closed-loop. Strengthening the supervision and management of habitual violation of, strengthening the safety supervision of outsourcing contractors. Carried out in spring and autumn of security inspections, flood control and inspection, safety p

11、roduction month, day supervision of production safety and the Olympic Games and other注:1、章节不完全按照陈意云教材的章节;2、不公布标准答案;3、题目中标注的页码如P6图1.3均为陈意云教材的页码。第一章一填空题1编译程序的工作过程一般可以划分为_、_、_、_和_等几个基本阶段,同时还伴有_和_。2若源程序是用高级语言编写的,目标程序是_或_,则其翻译程序称为编译程序。3编译方式与解释方式的根本区别在于_。4_是这样一种程序,它能将用甲种语言书写的程序转换成与其等价的乙种语言书写的程序。5对编译程序而言,输

12、入数据是_,输出结果是_。6运行编译程序的计算机称宿主机,运行编译程序所产生目标代码的计算机称_。7当把编译程序划分成编译前端和编译后端时,_主要由与_有关但与目标机无关的部分组成,编译后端包括编译程序中与目标机有关的部分,编译后端不依赖于源语言而仅仅依赖于_。8描述词法规则的有效工具是_,通常使用_来描述语法规则,使用_描述语义规则。二 简答题1什么是编译程序2. 什么是解释程序3. 什么是翻译程序4. 以上3种程序的区别三 综合题1、编译过程的几个阶段的输入输出及相关技术(P6图1.3)第二章一 综合题1构造与正规式(a|b)*a(a|b)等价的状态最少的确定有限自动机。2构造与正规式(0

13、|1)*0(0|1)等价的状态最少的确定有限自动机。3构造与正规式(a|ba)*等价的状态最少的确定有穷自动机。4构造与正规式(a|b)* aa等价的状态最少的确定有穷自动机。5构造与正规式a (a|b)*b等价的状态最少的确定有穷自动机。注意:以上4题要分别写出构造NFA、NFA确定化为DFA(子集法)、DFA的最小化过程二 简答题1、当给出有限自动机的状态转换图时,写出有限自动机的五元式定义,并判断它能识别何种字符串。第三章一填空题1上下文无关文法包括以下四个组成部分:一组_符号,一组_符号,一个_符号,以及一组_。2如果一个文法存在某个句子对应两棵不同的语法树,则这个文法是_文法。3消除

14、文法的二义性的方法主要有:_二义文法为非二义文法;为文法符号规定_和_。二 简答题1有文法G:EE+EE*E(E)id(1)给出(id* id)+ id的最左推导;(2)并给出该推导过程中的所有句型;(3)给出该文法的2个句子;(4)这个文法产生的是什么语言。2. 有文法G:SaSbSbSaS(1)为句子abab构造最左推导;(2)给出该推导过程中的所有句型;(3)证明该文法是二义文法;(4)这个文法产生的是什么语言。3. 什么是LL(1)文法。4. 预测分析器模型由哪些部分组成。5. LR分析器模型由哪些部分组成。第四章一填空题1自上而下语法分析中存在的主要问题是由左递归引起的 问题和左公共

15、因子引起的 问题。2LL(1)文法是即不含左递归,也没有左公共因子的文法。要避免回溯,第一,需要文法中每一个非终结符A的各个产生式的候选首符集两两不相交,即,若Aa1|a2|an,则 f,(i¹j);第二,若A存在某个候选首符集包含e,则 =f,i=1,2,.,n。3自上而下语法分析的基本思想是,对任何输入串,从文法的 符号,即根结点出发,自上而下地为输入串建立一颗语法树。递归下降分析器采用的是自上而下语法分析方法,非递归的预测分析器采用的是 语法分析方法,LR分析器采用的是 语法分析方法。4预测分析器模型是由输入、输出、 , 和 组成。5自下而上语法分析的基本思想是,从 开始,逐步

16、进行 ,直至规约到文法的开始符号,即从语法树的 开始,步步向上规约,直到 。6LR分析器模型包括输入、输出、 、 和含有 与 两部分的分析表。二、简答题1将以下文法G(S)改写成LL(1)文法,该文法能识别哪一类语言。S (L)aL L,SS2将以下表达式文法G(E)改写成LL(1)(无左递归的)文法,该文法能识别哪一类语言。EE+TTTT*FFF (E)id3将以下表达式文法G(L)改写成LL(1)(无左递归的)的文法,该文法能识别哪一类语言。LE:LEE+TE-TTTT*FT/FT mod FFF (E)idnum4将以下文法G(S)改写成LL(1)(无左公共因子的)文法,该文法能识别哪一

17、类语言。S® iCtS | iCtSeS | aC ® b三、综合题一完成分析以下文法G的LL(1)预测分析器(语法分析器)的构造。(1)L E;L| (2)E TE' (3)E' +TE'|-TE'|(4)T FT' (5)T' *FT'|/FT'|mod FT'|(6)F (E)|id|num 1给出或画出预测分析器模型的组成;2构造预测分析表,FIRST(A)和FOLLOW(A)如下:FIRST(F) = ( id numFIRST(T') = * / mod FIRST(T) = ( i

18、d numFIRST(E') = + - FIRST(E) = ( id numFIRST(L) = ( id num FOLLOW(L) = # FOLL0W(E) = ) ; FOLLOW(E') = ) ; FOLLOW(T) = + - ; ) FOLLOW(T') = + - ; ) FOLLOW(F) = + - * / mod ) ; 3给出驱动器算法的伪代码,令ip指向#中的第一个终结符,top指向文法开始符号S;4填表给出用此分析器分析句子id+id*id; #的过程。5填表给出用此分析器分析句子id+id*;#的过程。第三章&第五章一、综合题

19、一有文法G: (1)EE+T (2)ET (3)TT*F (4)TF (5)F(E) (6)Fi 表1是LR分析表,以下程序是驱动器算法,loop s := top; a := ip; case actions,a is shift s': push(a); push(s'); next(ip); reduce by A: pop(2*|); s' := top; push(A); push(goto(s',A); accept: return; others: error; end case;end loop1完成表2中LR分析器利用LR分析表和驱动器对输入串

20、i*i+i进行分析的过程:写出栈中的内容和动作类型(移进或归约,若为移进请指出转向状态,若为归约请指出归约采用的产生式),如步骤1步骤3;2若在语法分析同时进行语义分析,请在有语义翻译动作的步骤中标出,无语义翻译动作的步骤中空白,如步骤1步骤3。表1 文法G的LR分析表ACTIONGOTOi+*()#ETF0s5s41231s6acc2r2s7r2r23r4r4r4r44s5s48235r6r6r6r66s5s4937s5s4108s6s119r1s7r1r110r3r3r3r311r5r5r5r5解答:表2步骤栈内容当前输入移进-规约动作翻译动作1#0i*i+i#移进:s52#0i5*i+i

21、#规约:r6(Fi)有语义动作3#0F3*i+i#规约:r4(TF)有语义动作4567891011121314第六章一填空题1、属性文法是在上下文无关文法的基础上,为每个文法符号配备若干相关的“值”,称为属性,属性与变量一样可以进行计算和传递,属性加工的过程即是语义处理的过程,对文法的每个产生式配备的一组属性的计算规则,叫_,语义分析和中间代码的产生就是根据该规则进行的,在自上而下或自下而上语法分析过程中,在适当的时候进行属性的_或其它语义动作(如查填符号表、_、发布出错信息)就可进行语法制导翻译得到中间代码,这就是_的基本思想。2、文法符号的属性分为两类,_属性用于“自下而上”传递信息,_属

22、性用于“自上而下”传递信息。二 简答题1、简述语法制导翻译的基本思想第七章二、简答题一把下面表达式翻译成(a)语法树(b)有向无环图DAG (c)后缀表达式(d)三地址代码(1)-(a+b)*(b+c)(2)a*(b-c)+ (b-c)*d(3)(a+b)*(c+d)-(a+b+c)二请根据以下翻译方案写出id1*id2+id3的三地址代码。结合第1章,综合题的1、编译过程的几个阶段的输入输出及相关技术进行解答。产生式翻译方案(1)Aid:=E p=lookup(id.lexeme);if(p!=nil) emit(p,=, E.place);else error;(2)EE1+E2E.pla

23、ce=newtemp( );emit(E.place, = ,E1. place, +,E2. place;)(3)EE1*E2 E.place=newtemp( );emit(E.place, = ,E1. place, *,E2. place;)(4)Eidp=lookup(id.lexeme);if(p!=nil) E.place=p;else error;第八章-第九章一填空题1、不同的编译程序关于数据空间的存储分配策略会有所不同,_分配策略在编译是对所有数据对象分配固定的存储单元,且在运行是始终保持不变;另外还可采用的分配策略是_分配策略和_分配策略。2、过程一次执行所需局部信息用一

24、块连续的存储区来管理,这块存储区叫_,它由临时数据、局部数据、机器状态、访问链、控制链、参数和返回值等域构成,不同的语言及同一语言的不同编译器使用的域可能不同,这些域在其中的布局也可能不同,另外_往往可以取代它们中的一个或多个域。3、编译过程中编译程序需要不断汇集和反复查证出现在源程序中各种名字的属性和特征等有关信息,这些信息通常记录在一张或几张_中。二、简答题:1、C语言的编译系统应该采用哪种存储分配策略,并简述理由。1、Pascal语言的编译系统应该采用哪种存储分配策略,并简述理由。2、编译系统常见的存储分配策略有几种?它们都适合于什么性质的语言?三、综合题P172例6.4第十章-第十三章

25、一填空题1、代码优化可在编译的各阶段进行,其中主要的一类是在_代码之前生成的,这类优化不依赖于具体的计算机。2、代码优化可在编译的各阶段进行, 有一类是在生成_代码时进行的,这类优化在很大程度上依赖于具体的计算机。目标3、并行编译技术中两个最重要的内容是串行程序的_和_。二简答题:1、简述编译过程中代码优化必须遵循的原则2、对中间代码中基本块的优化和循环优化都是与机器无关的代码优化,请给出2-3种对中间代码优化的方法。3、与机器无关的代码优化有哪些种类,与机器有关的代码优化有哪些种类,请举例说明。4、目标代码生成的任务是什么?5、目标代码一般有哪几种形式?主要介绍的是永磁直流电动机;首先简述了

26、永磁电机、永磁直流电动机从产生到到逐步改善的发展过程,以及以此为基础的未来发展的趋势;activities, comprehensive and tamping Safety Foundation . Troubleshooting, management mechanism, give full play to role of technical supervision and realization of troubleshooting, management, improved process management. This year completed the boiler lowe

27、r header leakage, boiler pressure, a major risk management, completed 29 of great risks and 3 General problems of governance. Complete chemistry lab construction, thermal control, and complete the boiler scale integrated management, host shafting vibration of 10 scientific and technological projects

28、, such as. Complete supercritical 630MW on-line simulation system development and application of circulating water MCC standby power transformation, the transformation of desulfurization waste water, the unit water supply system of comprehensive treatment and discharge valve modification of coal mil

29、l 5 key technological transformation projects, group health is improved. -Science and technology innovation is further increased. Strengthen the characteristics of supercritical unit major issues, gradually clearing the particularity of supercritical unit and regularity. Developed motor oil time man

30、agement, switch action times, statistics, coal-aided measurement software, improves the production level of lean management. Increased investment in science and technology, reporting science and technology projects and 14 technical project total cost percentage of the total annual production output

31、of 0.25%. "Large-scale coal-fired power plant flue gas desulfurization, denitrification complete development and application of key technologies" project, won the national science and technology progress second prize. 630MW supercritical units optimized control strategies and the 630MW development and application of on-line simulation system for supercritical units, supercritical 600MW units of turbine driven boiler feed pump set of comprehensive treatment of defects Datang technology respectively one or two and third. Meanwhile, info

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论