编译原理 龙书 第二章 一个简单的算术式(+,-)翻译器实现

本文介绍了如何实现一个简单的算术式中缀转后缀的翻译器,该翻译器基于《编译原理》龙书中的C源码,并进行了部分C++改写。
摘要由CSDN通过智能技术生成

    昨天晚上决定正面硬刚神课《编译原理》。硬上龙书。

   下面是 一个简单的算术式中缀变后缀的翻译器。

 

    这个也是 龙书中 一个C实现源码 。部分用c++改写。

#include <iostream>
#include <ctype.h>
#include <stdlib.h>
#include <stdio.h>
using namespace std;

int lookahead;
void error()//错误处理
{
    cout<<"error"<<endl;
    exit(1);
}

//token 用来匹配预扫描记号lookahead
void match(int t) //检测迭代函数
{
    if(lookahead == t){
    lookahead = getchar();
    }
    else error();
}

void term()//判断函数  isdigit(char c);判断输入字符是否是0~9。被包含在头文件<ctype.h>中。
{
    if(isdigit(lookahead)){
        putchar(lookahead);
        match(lookahead);
    }else error();
}

void expr()
{
    term();
    while(1)
    {
        if(lookahead == '+'){
            match('+');term();putchar('+');
        }
        else if(lookahead == '-'){
            match('+');term();putchar('-');
        }
        else break;
    }
}



int main()
{
    lookahead = getchar();
    expr();
    cout<<endl;
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值