欢迎来到天天文库
浏览记录
ID:6645667
大小:59.65 KB
页数:8页
时间:2018-01-21
《20112809词法分析》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、词法分析与语法分析实验报告姓名:李知军班级:软件五班学号:20112809词法分析一、实验目的设计、编制并调试一个词法分析程序,加深对词法分析原理的理解。二、实验要求2.1各种单词符号对应的种别码:表2.1各种单词符号对应的种别码单词符号种别码单词符号种别码bgin1:17If2:=18Then3<20wile4<>21do5<=22end6>23lettet(letter
2、digit)*10>=24dightdight*11=25+13;26—14(27*15)28/16#02.2词法分析程序的功能:输入:所给文法的源程序字符串。输出:二元组(s
3、yn,token或sum)构成的序列。其中:syn为单词种别码;token为存放的单词自身字符串;sum为整型常数。例如:对源程序beginx:=9:ifx>9thenx:=2*x+1/3;end#的源文件,经过词法分析后输出如下序列:(1,begin)(10,x)(18,:=)(11,9)(26,;)(2,if)……三、词法分析程序的算法思想:算法的基本任务是从字符串表示的源程序中识别出具有独立意义的单词符号,其基本思想是根据扫描到单词符号的第一个字符的种类,拼出相应的单词符号。3.1主程序示意图:主程序示意图如图3-1所示。其中初始包括以下两个
4、方面:⑴关键字表的初值。关键字作为特殊标识符处理,把它们预先安排在一张表格中(称为关键字表),当扫描程序识别出标识符时,查关键字表。如能查到匹配的单词,则该单词为关键字,否则为一般标识符。关键字表为一个字符串数组,其描述如下:Char*rwtab[6]={“begin”,“if”,“then”,“while”,“do”,“end”,};置初值调用扫描子程序输出单词二元组输入串结束否是结束图3-1(2)程序中需要用到的主要变量为syn,token和sum四、词法分析程序的C语言程序源代码:#include#include5、g.h>#include"conio.h"#include"stdlib.h"charprog[80],token[8],ch;intsyn,p,m,n,sum;char*rwtab[6]={"begin","if","then","while","do","end"};scaner();main(){p=0;printf("pleaseinputastring(endwith'#'):/n");do{scanf("%c",&ch);prog[p++]=ch;}while(ch!='#');p=0;do{scaner();switch(syn)6、{case11:printf("(%-10d%5d)",sum,syn);break;case-1:printf("youhaveinputawrongstring");getch();exit(0);default:printf("(%-10s%5d)",token,syn);break;}}while(syn!=0);getch();}scaner(){sum=0;for(m=0;m<8;m++)token[m++]=NULL;ch=prog[p++];m=0;while((ch=='')7、8、(ch==''))ch=prog[p9、++];if(((ch<='z')&&(ch>='a'))10、11、((ch<='Z')&&(ch>='A'))){while(((ch<='z')&&(ch>='a'))12、13、((ch<='Z')&&(ch>='A'))14、15、((ch>='0')&&(ch<='9'))){token[m++]=ch;ch=prog[p++];}p--;syn=10;for(n=0;n<6;n++)if(strcmp(token,rwtab[n])==0){syn=n+1;break;}}elseif((ch>='0')&&(ch<='9')){while((ch>='0'16、)&&(ch<='9')){sum=sum*10+ch-'0';ch=prog[p++];}p--;syn=11;}elseswitch(ch){case'<':token[m++]=ch;ch=prog[p++];if(ch=='='){syn=22;token[m++]=ch;}else{syn=20;p--;}break;case'>':token[m++]=ch;ch=prog[p++];if(ch=='='){syn=24;token[m++]=ch;}else{syn=23;p--;}break;case'+':token[m++]=c17、h;ch=prog[p++];if(ch=='+'){syn=17;token[m++]=ch;}else{syn=13;
5、g.h>#include"conio.h"#include"stdlib.h"charprog[80],token[8],ch;intsyn,p,m,n,sum;char*rwtab[6]={"begin","if","then","while","do","end"};scaner();main(){p=0;printf("pleaseinputastring(endwith'#'):/n");do{scanf("%c",&ch);prog[p++]=ch;}while(ch!='#');p=0;do{scaner();switch(syn)
6、{case11:printf("(%-10d%5d)",sum,syn);break;case-1:printf("youhaveinputawrongstring");getch();exit(0);default:printf("(%-10s%5d)",token,syn);break;}}while(syn!=0);getch();}scaner(){sum=0;for(m=0;m<8;m++)token[m++]=NULL;ch=prog[p++];m=0;while((ch=='')
7、
8、(ch==''))ch=prog[p
9、++];if(((ch<='z')&&(ch>='a'))
10、
11、((ch<='Z')&&(ch>='A'))){while(((ch<='z')&&(ch>='a'))
12、
13、((ch<='Z')&&(ch>='A'))
14、
15、((ch>='0')&&(ch<='9'))){token[m++]=ch;ch=prog[p++];}p--;syn=10;for(n=0;n<6;n++)if(strcmp(token,rwtab[n])==0){syn=n+1;break;}}elseif((ch>='0')&&(ch<='9')){while((ch>='0'
16、)&&(ch<='9')){sum=sum*10+ch-'0';ch=prog[p++];}p--;syn=11;}elseswitch(ch){case'<':token[m++]=ch;ch=prog[p++];if(ch=='='){syn=22;token[m++]=ch;}else{syn=20;p--;}break;case'>':token[m++]=ch;ch=prog[p++];if(ch=='='){syn=24;token[m++]=ch;}else{syn=23;p--;}break;case'+':token[m++]=c
17、h;ch=prog[p++];if(ch=='+'){syn=17;token[m++]=ch;}else{syn=13;
此文档下载收益归作者所有