yacc实现计算器

注重版权,若要转载烦请附上作者和链接

作者:Joshua_yi

链接:https://blog.csdn.net/weixin_44984664/article/details/109342912

实验环境

  • deepin
  • bison
  • gcc

一、yacc代码

%{
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <malloc.h>
#ifndef YYSTYPE
#define YYSTYPE double
#endif

int yylex();
extern int yyparse();
FILE* yyin;
void yyerror(const char* s);

struct id_struct
{
    char id_name[50];
    double id_value;
}id;
%}

%token NUMBER
%token ADD
%token MUL
%token DIV
%token LB RB
%token SUB
%token ID
%token EQUAL
%token ADD_ADD SUB_SUB

%right EQUAL
%left ADD MUS
%left MUL DIV
%right ADD_ADD SUB_SUB
%right UMINUS
%%

lines :  lines expr ';' {printf("result: %f\n", $2);}
		| lines ';'
		|
		;

expr :   expr ADD expr   {$$ = $1 + $3;}
		| expr SUB expr  {$$ = $1 - $3;}
		| expr MUL expr  {$$ = $1 * $3;}
		| expr DIV expr  {
					if ($3==0.0)
						yyerror("divide by zero!");
					else
						$$ = $1 / $3;
						}
		| LB expr RB {$$ = $2;}
        | ID {$$ = id.id_value;}
        | ID EQUAL expr {
                        $$ = $3;
                        id.id_value = $3;
                        }
        | ADD_ADD ID    { $$ = id.id_value + 1; id.id_value += 1; } // (++a)
		| SUB_SUB ID    { $$ = id.id_value - 1; id.id_value -= 1; } // (--a)
		| ID ADD_ADD    { $$ = id.id_value; id.id_value += 1; } //  (a++)
		| ID SUB_SUB    { $$ = id.id_value; id.id_value -= 1; }  // (a--)
		//可以用%prec强制定义产生式的优先级和结合性
		| SUB expr %prec UMINUS {$$=-$2;}
		| NUMBER
	    ; 
%%

int yylex()
{
	char t,t_temp;
    
	while (1){
		t = getchar();
		if (t == ' ' || t == '\t'||t=='\n')
		{}
        else if (t == '+'){
            t = getchar();
			if (t == '+')
				return ADD_ADD;
			else {
				ungetc(t, stdin);
				return ADD;
                }
        }
        else if (t == '-'){
            t = getchar();

			if (t == '-')
				return SUB_SUB;
			else {
				ungetc(t, stdin);
				return SUB;
                }
        }
        else if (t == '*')
            return MUL;
        else if (t == '/')
            return DIV;
		else if (t == '(')
			return LB;
		else if (t == ')')
			return RB;
        else if (t == '=')
            return EQUAL;
		else if (isdigit(t)) {
            yylval = 0;
            while(isdigit(t)){
			yylval = yylval * 10 + t - '0';
            t = getchar();
            }
            ungetc(t, stdin);
			return NUMBER;
		}
        else if ((t >= 'a' && t <= 'z' ) || (t >= 'A' && t <= 'Z') || (t == '_')) {
            int ti=0;
            while(('a'<=t&&t<='z')||('A'<=t&&'Z'>=t)||(t=='_')||(t>='0'&&t<='9')){
                id.id_name[ti] = t;
                ti++;
                t=getchar(); 
            }
            id.id_name[ti] = '\0';
            ungetc(t,stdin);
            return ID; 
        }
		else {return t; }
	}
}

void yyerror(const char* s){
	fprintf(stderr, "Parse erro: %s\n", s);
	exit(1);
}

int main(void)
{
	yyin = stdin;
	do{
		yyparse();
	}while(!feof(yyin));

	return 0;
}

二、演示

bison -d myyacc2.1.y
gcc -o myyacc2.1.out myyacc2.1.tab.c
./myyacc2.1.out

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Joshua_yi

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值