资源描述:
《语法分析 实验报告》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、《编译系统设计实践》实验项目二:语法分析指导老师:陈晖组长:030902336组员:030902246030902335otherstaffoftheCentre.Duringthewar,ZhuwastransferredbacktoJiangxi,andDirectorofthenewOfficeinJingdezhen,JiangxiCommitteeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,Secretaryoft
2、heSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoftheFederationofStateenterprisesMinister,ShenmufuguSARmissions,DirectorofNingxiaCountypartyCommitteeSecretaryandrecorderoftheCountypartyCommitteeSecretary,Ministersand实验目的根据给出的文法编制LR(
3、1)分析程序,以便对任意输入的符号串进行分析。本次实验的目的主要是加深对LR(1)分析法的理解。一、实验内容对已给语言文法,构造LR(1)分析表,编制语法分析程序,要求将错误信息输出到语法错误文件中,并输出分析句子的过程(显示栈的内容)。二、程序设计与实现1.功能描述:根据给定的文法,由程序生成项集族和语法分析表,对输入的源程序进行词法分析,得到语法分析的输入串,经过语法分析后得到三个栈,它们分别是状态栈,字符栈,输入栈,从而分析出输入的源程序是否有语法错误。2.重要过程描述:1)本实验有两个输入文件:一个为源代
4、码输入文件“in_code.txt”,一个为文法的输入文件“in_gram.txt”,三个输出文件:一个为词法的输出和语法的输入文件“out_in.txt”,一个为项目集族和分析表的输出文件“out_items.txt”一个为语法分析结果的输出即栈的输出“result.txt”。2)重要数据结构:otherstaffoftheCentre.Duringthewar,ZhuwastransferredbacktoJiangxi,andDirectorofthenewOfficeinJingdezhen,Jiangx
5、iCommitteeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoftheFederationofStateenterprisesMinister,ShenmufuguSARmissions,DirectorofNingxiaCountypartyCom
6、mitteeSecretaryandrecorderoftheCountypartyCommitteeSecretary,Ministersandtypedefstructproduction{//产生式charsuf[25];//搜索符charrear[30];//产生式后部charfront;//产生式头部unsignedpoint;//小圆点的位置shortseq;}prod;typedefstructstatement{//状态iprodp[50];//产生式intnum;//产生式数量}state;ty
7、pedefstructcollection{/状态集statei[300];intnum;//状态个数}coll;structfstruct{//first集charstr[50];//first符号串intnum;//first符号串字符个数boolblank;//是否包含空符号}firstx;shortintanatab[300]otherstaffoftheCentre.Duringthewar,ZhuwastransferredbacktoJiangxi,andDirectorofthenewOffice
8、inJingdezhen,JiangxiCommitteeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeofth