我是編譯器新手,學習如何使用計算器從.txt文件輸入多行方程(每行一個方程)。而我正面臨着分段錯誤的問題。如何爲算術yacc程序讀取多行輸入文件?
YACC代碼:
%{
#include <stdio.h>
#include <string.h>
#define YYSTYPE int /* the attribute type for Yacc's stack */
extern int yylval; /* defined by lex, holds attrib of cur token */
extern char yytext[]; /* defined by lex and holds most recent token */
extern FILE * yyin; /* defined by lex; lex reads from this file */
%}
%token NUM
%%
Begin : Line
| Begin Line
;
Line : Calc {printf("%s",$$); }
;
Calc : Expr {printf("Result = %d\n",$1);}
Expr : Fact '+' Expr { $$ = $1 + $3; }
| Fact '-' Expr { $$ = $1 - $3; }
| Fact '*' Expr { $$ = $1 * $3; }
| Fact '/' Expr { $$ = $1/$3; }
| Fact { $$ = $1; }
| '-' Expr { $$ = -$2; }
;
Fact : '(' Expr ')' { $$ = $2; }
| Id { $$ = $1; }
;
Id : NUM { $$ = yylval; }
;
%%
void yyerror(char *mesg); /* this one is required by YACC */
main(int argc, char* *argv){
char ch;
if(argc != 2) {printf("useage: calc filename \n"); exit(1);}
if(!(yyin = fopen(argv[1],"r"))){
printf("cannot open file\n");exit(1);
}
yyparse();
}
void yyerror(char *mesg){
printf("Bad Expression : %s\n", mesg);
exit(1); /* stop after the first error */
}
LEX代碼:
%{
#include <stdio.h>
#include "y.tab.h"
int yylval; /*declared extern by yacc code. used to pass info to yacc*/
%}
letter [A-Za-z]
digit [0-9]
num ({digit})*
op "+"|"*"|"("|")"|"/"|"-"
ws [ \t\n]
other .
%%
{ws} { /* note, no return */ }
{num} { yylval = atoi(yytext); return NUM;}
{op} { return yytext[0];}
{other} { printf("bad%cbad%d\n",*yytext,*yytext); return '?'; }
%%
/* c functions called in the matching section could go here */
我試圖與結果一起打印的表達。 提前致謝。
rici我用Expr更新了Fact事物,現在當我編譯它時,yacc代碼成功了,但是提供了20次轉換/減少衝突信息。我能夠得到輸出但不是.txt中的表達式例如:2 + 3 *( - 7)是在.txt中,但是當我編寫文件讀取器代碼時,它會拋出yyerror消息。 –
@nikul:在回答問題後請不要更改您的問題。 SO旨在成爲問題和答案的存儲庫;當你改變你的問題時,你使答案無效,然後這些信息對其他人沒有任何價值。如果答案對您有幫助,您可以爲其投票和/或接受;如果沒有,你可以降低或忽略它,但無論是哪種情況,如果你還有其他問題,請將它作爲另一個問題。 – rici
很抱歉,我是這個網站的新手,我不知道。 –