分析以下程序生成的高级语言程序结构: // place any extra initialisation code here } // place any declarations here delim [ \t\n] ws {delim}+ letter [A-Za-z] digit [0-9] id {letter}({letter}|{digit})* number [+-]?{digit}+(\.{digit}+)?(E[+-]?{digit}+)? %% ///////////////////////////////////////////////////////////////////////////// // rules section {ws} { } if { String output = String.format("(IF, %s)", new String(yytext, 0, yyleng)); System.out.println(output); } then { String output = String.format("(THEN, %s)", new String(yytext, 0, yyleng)); System.out.println(output); } while { String output = String.format("(WHILE, %s)", new String(yytext, 0, yyleng)); System.out.println(output); } do { String output = String.format("(DO, %s)", new String(yytext, 0, yyleng)); System.out.println(output); } else { String output = String.format("(ELSE, %s)", new String(yytext, 0, yyleng)); System.out.println(output); } {id} {String output = String.format("(ID, %s)", new String(yytext, 0, yyleng)); System.out.println(output); } {number} { String output = String.format("(NUM, %s)", new String(yytext, 0, yyleng)); System.out.println(output); } "<" { String output = String.format("(RELOP, %s)", new String(yytext, 0, yyleng)); System.out.println(output); } "<=" { String output = String.format("(RELOP, %s)", new String(yytext, 0, yyleng)); System.out.println(output); } "<>" { String output = String.format("(RELOP, %s)", new String(yytext, 0, yyleng)); System.out.println(output); } ">" { String output = String.format("(RELOP, %s)", new String(yytext, 0, yyleng)); System.out.println(output); } ">=" { String output = String.format("(RELOP, %s)", new String(yytext, 0, yyleng)); System.out.println(output); } "=" { String output = String.format("(RELOP, %s)", new String(yytext, 0, yyleng)); System.out.println(output); } "+" { String output = String.format("(RELOP, %s)", new String(yytext, 0, yyleng)); System.out.println(output); } . {}
时间: 2023-06-19 14:03:44 浏览: 75
这是一个 Lex 语法分析器的程序。Lex 是 Unix 系统上的一个词法分析器生成器,它可以根据用户提供的规则生成一个能够识别特定模式的程序。这个程序中,规则部分使用正则表达式定义了词汇单元,比如空格、字母、数字、标识符、数字等等。在规则的右边是对应的处理代码,用来对词汇单元进行处理。在这个程序中,处理代码将每个词汇单元转换成对应的 token,并输出到控制台上。
具体来说,这个程序可以识别 if、then、while、do、else 等关键字,同时也可以识别标识符和数字。对于关系运算符(如 <、>、=、<> 等)和加号,它们的处理代码都是相同的(即输出一个 RELOP 类型的 token)。程序的执行流程是:读入输入的代码,将其中的词汇单元按照规则转换成对应的 token,并依次输出到控制台上。
需要注意的是,这个程序只处理了代码中的词法单元,而不能进行语法分析。要进行完整的语法分析,需要结合上下文进行分析。
相关问题
优化以下lex代码使之支持+,-,,/的运算,其中num为正整数 E -> E+E | E-E| EE | E/E | num,输出产生式并输出计算答案:%{ /**************************************************************************** mylexer.l ParserWizard generated Lex file. Date: 2023年4月17日 ****************************************************************************/ %} ///////////////////////////////////////////////////////////////////////////// // declarations section // lexical analyser name %name mylexer // class members { // place any extra class members here } // constructor { // place any extra initialisation code here } // place any declarations here chars [A-Za-z] numbers ([0-9])+ delim [" "\t] whitespace {delim}+ words {chars}+ newline [\n] equal [=] plus ["+"] multi ["*"] sub [-] div [/] %% ///////////////////////////////////////////////////////////////////////////// // rules section %{ // extract yylval for use later on in actions myparser.YYSTYPE yylval = (myparser.YYSTYPE)yyparserref.yylvalref; %} // place your Lex rules here {numbers} {yylval.strValue= new String(yytext,0,yyleng); yylval.value=Integer.parseInt(yylval.strValue); return myparser.NUMBER;} {newline} {yylval.strValue= new String(yytext,0,yyleng); return myparser.NEWLINE;} {plus} {yylval.strValue= new String(yytext,0,yyleng); return myparser.PLUS;} {multi} {yylval.strValue= new String(yytext,0,yyleng); return myparser.MULTI;} {sub} {yylval.strValue= new String(yytext,0,yyleng); return myparser.SUB;} {div} {yylval.strValue= new String(yytext,0,yyleng); return myparser.DIV;} %% ///////////////////////////////////////////////////////////////////////////// // programs section }
以下是优化后的lex代码:
%{
/****************************************************************************
mylexer.l ParserWizard generated Lex file.
Date: 2023年4月17日
****************************************************************************/
%}
///////////////////////////////////////////////////////////////////////////////
// declarations section
// lexical analyser name
%name mylexer
// class members
{
// place any extra class members here
}
// constructor
{
// place any extra initialisation code here
}
// place any declarations here
chars [A-Za-z]
numbers ([0-9])+
delim [" "\t]
whitespace {delim}+
words {chars}+
newline [\n]
plus ["+"]
sub ["-"]
multi ["*"]
div ["/"]
%%
///////////////////////////////////////////////////////////////////////////////
// rules section
%{
// extract yylval for use later on in actions
myparser.YYSTYPE yylval = (myparser.YYSTYPE)yyparserref.yylvalref;
%}
// place your Lex rules here
{numbers} {
yylval.strValue = new String(yytext, 0, yyleng);
yylval.value = Integer.parseInt(yylval.strValue);
return myparser.NUMBER;
}
{newline} {
yylval.strValue = new String(yytext, 0, yyleng);
return myparser.NEWLINE;
}
{plus} {
yylval.strValue = new String(yytext, 0, yyleng);
return myparser.PLUS;
}
{sub} {
yylval.strValue = new String(yytext, 0, yyleng);
return myparser.SUB;
}
{multi} {
yylval.strValue = new String(yytext, 0, yyleng);
return myparser.MULTI;
}
{div} {
yylval.strValue = new String(yytext, 0, yyleng);
return myparser.DIV;
}
%%
///////////////////////////////////////////////////////////////////////////////
// programs section
// 输出产生式
%{
E : E PLUS E
| E SUB E
| E MULTI E
| E DIV E
| NUMBER
;
%}
// 输出计算答案
int main() {
yyparse();
return 0;
}
优化以下lex代码使之支持+,-,,/的运算,其中num为正整数 E -> E+E | E-E| EE | E/E | num,输出产生式并输出计算答案:%{ /**************************************************************************** myparser.y ParserWizard generated YACC file. Date: 2023年4月17日 ****************************************************************************/ %} ///////////////////////////////////////////////////////////////////////////// // declarations section // parser name %name myparser // class members { // place any extra class members here } // constructor { // place any extra initialisation code here } // attribute type %union { public int value; public String strValue; public void yycopy(yyattribute source, boolean move) { YYSTYPE yy = (YYSTYPE)source; value = yy.value; strValue=yy.strValue; } } // place any declarations here %token NUMBER %token NEWLINE %left PLUS SUB %left MULTI DIV %start express %% ///////////////////////////////////////////////////////////////////////////// // rules section // place your YACC rules here (there must be at least one) express :dexpress NEWLINE { System.out.println("Answer:" + $1.value); }; dexpress :dexpress PLUS dexpress { System.out.print("Plus express "); $$.value=$1.value+$3.value; System.out.println($$.value); }; dexpress :NUMBER { $$.value=$1.value; System.out.println("Number to dexpress "+$1.value); }; %% ///////////////////////////////////////////////////////////////////////////// // programs section public static void main(String args[]) { int n = 1; mylexer lexer = new mylexer(); myparser parser = new myparser(); if (parser.yycreate(lexer)) { if (lexer.yycreate(parser)) { n = parser.yyparse(); } } System.exit(n); } }
以下是修改后的lex代码,支持+、-、*、/的运算:
%{
/****************************************************************************
myparser.y ParserWizard generated YACC file. Date: 2023年4月17日
****************************************************************************/
%}
%option noyywrap
%{
// Place any Java code here that you need
%}
%union {
public int value;
public String strValue;
}
%token NUMBER
%token PLUS SUB
%token MULTI DIV
%token NEWLINE
%%
// Rules section
express : dexpress NEWLINE {
System.out.println("Answer: " + $1.value);
};
dexpress : dexpress PLUS dterm {
$$.value = $1.value + $3.value;
};
dexpress : dexpress SUB dterm {
$$.value = $1.value - $3.value;
};
dexpress : dterm {
$$.value = $1.value;
};
dterm : dterm MULTI dfactor {
$$.value = $1.value * $3.value;
};
dterm : dterm DIV dfactor {
$$.value = $1.value / $3.value;
};
dterm : dfactor {
$$.value = $1.value;
};
dfactor : NUMBER {
$$.value = Integer.parseInt($1.strValue);
};
// Ignore whitespace and tabs
[ \t]+
// Ignore newlines
[\r\n]+
// Error handling
. {
System.out.println("Error: Invalid character " + yytext());
}
%%
// Programs section
public static void main(String args[]) {
int n = 1;
mylexer lexer = new mylexer();
myparser parser = new myparser();
if (parser.yycreate(lexer)) {
if (lexer.yycreate(parser)) {
n = parser.yyparse();
}
}
System.exit(n);
}
在上述代码中,我们增加了dterm和dfactor两个非终结符,支持*和/的运算。同时,我们修改了dexpress的产生式,使其支持+、-的运算。在dfactor中,我们将读入的字符串$1.strValue转换成int类型,作为计算的操作数。我们还添加了错误处理的代码,在输入了无法识别的字符时,程序会输出错误信息。
阅读全文