码迷,mamicode.com
首页 > 其他好文 > 详细

实验四递归下降语法分析程序设计

时间:2016-01-02 00:55:48      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:

#include<stdio.h>
#include<string>
char str[10];   //记录要分析的字符串
int x=0;        //记录第一个字符
 
void E();          
void X();          
void T();          
void Y();
void F();
 
int main()
{
    int len;
    printf("请输入算数表达式:");
    scanf("%s",str);
    len=strlen(str);
    str[len]=‘#‘;
    str[len+1]=‘\0‘;
    E();
    printf("\nTrue!\n");
    strcpy(str,"");
    x=0;
    return 0;
}
 
void E()
{
    T();
    X();
}
 
void X()
{
    if(str[x]==‘+‘||str[x]==‘-‘)
    {
        x++;
        T();
        X();
    }
}
 
void T()
{
    F();
    Y();
}
 
void Y()
{
    if(str[x]==‘*‘||str[x]==‘/‘)
    {
        x++;
        F();
        Y();
    }
}
 
void F()
{
    if(str[x]>=‘a‘&&str[x]<=‘z‘)
    {
        x++;
    }
    else if(str[x]>=0&&str[x]<=9)
    {
        x++;
    }
    else if (str[x]==‘(‘)
    {    
        x++;
        E();
        if(str[x]==‘)‘)
        {
            x++;
        }
        else
        {
            printf("\nError!\n");
            exit(0);
        }
    }
    else
    {
        printf("\nError!\n"); exit(0); } }

  结果如下:

 

技术分享

 

 
 

实验四递归下降语法分析程序设计

标签:

原文地址:http://www.cnblogs.com/linfa/p/5093912.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!