C语言直接编程法词法分析

​
​
#include<stdio.h>
#include<ctype.h>
#include<string.h>
#define keywordSum 10
char *keyword[keywordSum]={"if","else","for","while","do","int","read","write","void","function"};
char singleword[50]="+-*(){}[];,:";//you can't use '='
char doubleword[10]="><=!";//you can't use '+=' and stuff like that but '>='
char Scanin[300],Scanout[300];
FILE *fin,*fout;
//能实现的功能: 
//单行注释
//数字和下划线开头的标识符错误 
//正常标识符可用下划线 
//大写的keyword能够识别并提示
//非法字符
//判断过程中规避EOF的判断 
int line=1;

int TESTscan()
{
    char ch,token[40];
    int es=0,j;//token counter
    int n;//search keyword 
    printf("请输入源程序输入文件名(包括路径):");
    scanf("%s",Scanin);
    printf("请输入源程序输出文件名(包括路径):");
    scanf("%s",Scanout);
    if((fin=fopen(Scanin,"r"))==NULL)
    {
        printf("\n打开词法分析输入文件出错!\n");
        return(1);
    }
    if((fout=fopen(Scanout,"w"))==NULL)
    {
        printf("\n创建词法分析输出文件错误!\n");
        return(2);
    }
    ch=getc(fin);//get a char and move pointer 
    while(ch!=EOF)//End Of File
    {
        while(ch==' '||ch=='\n'||ch=='\t'){
            if(ch=='\n') line++;
            ch=getc(fin);
        }
        if(isalpha(ch))//isalpha is a function , if it is a letter , return  non-zero number
        {    
            token[0]=ch;j=1;
            ch=getc(fin);
            while(isalnum(ch)||ch=='_')
            {
                token[j++]=ch;
                ch=getc(fin);
            }
            token[j]='\0';//finish inputting a string
            n=0;
            while((n<keywordSum)&&strcmp(token,keyword[n]))n++;
            if(n<keywordSum)
                fprintf(fout,"%s\t%s\n",token,token);//lower letter keyword
            else{
                char tokenassist[40];
                int i=0;
                do{
                    tokenassist[i]=token[i];
                    if(tokenassist[i]>=65&&tokenassist[i]<=90) tokenassist[i]+=32;
                    i++;
                }while(token[i-1]!='\0');
                n=0;
                while((n<keywordSum)&&strcmp(tokenassist,keyword[n]))n++;
                if(n<keywordSum)
                    fprintf(fout,"%s\t%s\n",tokenassist,tokenassist);//capital letter keyword
                else
                    fprintf(fout,"%s\t%s\n","ID",token);//indentifier
            }
        }else if(isdigit(ch))
        {
            token[0]=ch;
            j=1;
            ch=getc(fin);
            if(isalpha(ch)||ch=='_'){//output illegal keyword
                do{
                    token[j++]=ch;
                    ch=getc(fin);
                }
                while(isalnum(ch)||ch=='_');
                token[j]='\0';
                printf("%s%d%s\t%s\t%s\n","第",line,"行","非法标识符",token);
            }
            else{
                while(isdigit(ch))
                {
                    token[j++]=ch;
                    ch=getc(fin);
                }
                token[j]='\0';
                fprintf(fout,"%s\t%s\n","NUM",token);
            }
        }else if(ch=='_'){//when the first char is _ , it is illegal identifier
            token[0]=ch;
            j=1;
            ch=getc(fin);
            if(isalpha(ch)||ch=='_'){
                do{
                    token[j++]=ch;
                    ch=getc(fin);
                }
                while(isalnum(ch)||ch=='_');
                token[j]='\0';
                printf("%s%d%s\t%s\t%s\n","第",line,"行","非法标识符",token);
            }
        }else if(strchr(singleword,ch)>0)
        {
            token[0]=ch;token[1]='\0';
            ch=getc(fin);
            fprintf(fout,"%s\t%s\n",token,token);
        }else if(strchr(doubleword,ch)>0)
        {
            token[0]=ch;
            ch=getc(fin);
            if(ch=='=')
            {
                token[1]=ch;token[2]='\0';
                ch=getc(fin);
            }else
                token[1]='\0';
            fprintf(fout,"%s\t%s\n",token,token);
        }else if(ch=='/')
        {
            ch=getc(fin);
            if(ch=='*')
            {
                char ch1;
                ch1=getc(fin);
                do
                {
                    ch=ch1;ch1=getc(fin);}
                while((ch!='*'||ch1!='/')&&ch1!=EOF);
                ch=getc(fin);
            }else if(ch=='/')
            {
                do
                {
                    ch=getc(fin);}
                while(ch!='\n'&&ch!=EOF);
                ch=getc(fin);
            }
            else
            {
                token[0]='/';token[1]='\0';
                fprintf(fout,"%s\t%s\n",token,token);
            }
        }else if(ch!=EOF)//output illegal char 
        {
            token[0]=ch;token[1]='\0';
            ch=getc(fin);
            es=3;
            printf("%s%d%s\t%s\t%s\n","第",line,"行","非法字符",token);
        }
    }
    fclose(fin);
    fclose(fout);
    return(es);
}

int main(){
    int es=0;
    
    es=TESTscan();
    if(es>0)printf("编译完成,但程序中出现非法字符!\n");
    else printf("词法分析成功!\n");
    return 1;
}

​

​

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值