本程序实现了LR(0)语法分析器,内容完整,功能详细,能够编译原理有更深入的了解。包含了每一步分分析过程和分析结果。
2019-12-21 19:43:41 2.85MB LR(0)语法分析器
1
完整的编译原理语法分析器的全套,还有实验报告。。。
2019-12-21 19:42:10 1.36MB good
1
PL/0源程序 //PL0.txt const a=10; var b,c; procedure p; begin c:=b+a end; begin read(b); while b#0 do begin call p;write(2*c);read(b) end end. //outputfile.txt constsym, ident, a eql, number, 10 semicolon, varsym, ident, b comma, ident, c semicolon, proceduresym, ident, p semicolon, beginsym, ident, c becomes, ident, b plus, ident, a endsym, semicolon, beginsym, readsym, lparen, ident, b rparen, semicolon, whilesym, ident, b neq, number, 0 dosym, beginsym, callsym, ident, p semicolon, writesym, lparen, number, 2 times, ident, c rparen, semicolon, readsym, lparen, ident, b rparen, endsym, endsym,
2019-12-21 19:40:54 147KB 语法分析
1
以前课程设计做的C++的语法分析程序,功能比较简单,有详细注释,容易理解
2019-12-21 19:40:23 8KB 语法分析
1
文法规则: 1.—>program id 2.—> { 语句 [ 语句 ] } 3.—>||| || 4.—> id [ , id ] ; 5.—> integer | float 6.—> input id [ , id ] ; 7.—> output [ , ] ; 8.—> id = ; 9.—> if { else } 10.—> while 11.—> [ +|- ] 12.—> [ *|/ ] 13.—> id | con | deci | ( ) 14.—> [ and | or ] 15.—> 16.—> < | | >= | == |
2019-12-21 19:39:44 258KB 四元式 词法分析 语法分析 语义分析
1
本实验通过一个简易的语法分析器的实现,进一步加深对《编译原理》课程中语法分 析理论的理解,增强动手程序设计能力。分析可以采用自上而下的 LL(1)分析法,自下而上 的 SLR(1)和 LR(1)分析法。本次试验采用的是 LR(1)分析法,加深对它的理解。
2019-12-21 19:38:38 115KB 语法分析器 Java语言 编译原理
1
编译原理词法分析,语法分析,语义分析(源代码和实验报告),已经测试运行,绝对对得起10分(本人的承诺)。
2019-12-21 19:38:23 1.21MB 编译原理
1
生成文法的项目集规范族,生成状态集和状态集之间的迁移表,产生确定有限状态机
2019-12-21 19:38:06 11KB 编译 语法分析 项目集规范族
1
对文法进行自动分析,生成用于LALR1语法分析器的状态转换表,加上框架代码,构造出LALR1语法分析程序
2019-12-21 19:38:06 28KB 编译 语法分析 LALR1 生成器
1
c语法分析器,采用bison2.1(yacc), flex(lex), 生成程序的语法树 分析单个文件,不支持预处理, 不解析预处理符号# bison,flex工具在上传包内,语法见cgrammar-new.y,词法见input.lex 另附相关说明,本代码采用vs2005,建立console工程即可编译运行。 测试文件test.c, 输出结果out.txt
2019-12-21 19:38:06 914KB c 语法分析 yacc bison
1