搜索资源列表
Suanfu_Gui
- 编译课程设计:算符优先算法分析,firstVT,lastVT,符号串分析-Operator First Algorithm
abc
- 汇编语言 语法ll1分析器 和 算符优先分析 -Assembly Language Syntax ll1 analysis and operator precedence parser
Compiler
- java实现的算符优先文法分析器 可以进行括号匹配,出入栈分析-java implementation of the operator precedence grammar analyzer
yufafenxi
- 实验内容: 可选择LL1分析法、算符优先分析法、LR分析法之一,实现如下表达式文法的语法分析器: (1)E→E+T | E-T | T (2)T→T*F | T/F | F (3)F→P^F | P (4)P→(E) | i -Experiment: optional the LL1 analysis method, the operator precedence analysis, LR analysis, one of the following expre
Compiler1
- 使用C++编写的编译器,里面 包括了词法分析程序scanner.cpp,无符号数识别程序ucon.cpp,算符优先法语法语义处理程序SF.cpp,SLR1语法语义处理程序SLR1.cpp。比较强大。源程序输入有program.txt,输出包括窗口和compiled.txt-Using C++ to write compiler, which includes lexical analysis program scanner.cpp the number of symbols identifica
suanfu
- 算符优先分析法。根据你输入的文法,程序为你生成算符优先分析表,根据输入语句分析句子。基本功能具备-The operator precedence analysis method. Operator priority analysis table is generated for you based on your input grammar, procedures, analysis of sentences based on the input statement. Basic functio
GrammerAnalysis
- 用MFC写的语法分析器,可以进行算符优先文法分析-Analysis of operator precedence grammar parser, written with MFC
suanfuyouxianfenxisuanfa
- 算符优先分析算法的设计,关于编译器的算符优先设计算法-Operator precedence parsing algorithm design, operator on compiler design algorithm
BIANYI
- 包含6个编译原理课程设计完整报告,包括集合FOLLOW(A)构造算法,算符优先分析算法,构造正规式r1r2(连接运算)的NFA等,有源码以及结果截图-Contains 6 compiler theory curriculum design complete report, including the collection FOLLOW (A) construction algorithm, operator priority analysis algorithms, construct regu
Operator-precedence-parser
- 算符优先分析是基于文法满足算符优先文法的基础上施加的一种自底向上的一种语法分析方法。通过对给定的文法构造算符优先分析表和实现某个符号串的分析,掌握算符优先分析法的基本思想和实现过程。-Operator priority analysis is based on operator precedence grammar grammar satisfy imposed on the basis of a bottom-up approach a grammatical analysis. Throug
fuzhiyujuyufafenxi
- C++编写的赋值语句的算符优先语法分析程序,以文件形式输入赋值语句,以文件形式输出归约过程。程序中自动构造算符优先表。-Operator precedence parser written in C++ assignment statement, in document form input assignment, output reduction process in document form. The program automatically constructed operator p
GrammarPriority
- 编译原理作业,用python写的算符优先算法,实现了语法分析算符优先-Written python compiler theory with the operator priority algorithm
operator-precedence-parser
- 1、给出文法如下: G[E] E->T|E+T T->F|T*F F->i(E) 可以构造算符优先表如下: + * ( ) i + * ( ) i 2、计算机中表示上述优先关系,优先关系的机内存放方式有两种1)直接存放,2)为优先关系建立优先函数,这里由学生自己选择一种方式; 3、给出算符优先分析算法如下: k:=1 S[k]:=‘#’ REP
postfix-notation
- 1、给出文法如下: G[E] E->T|E+T T->F|T*F F->i(E) 对应的转化为逆波兰式的语义动作如下: E-> E(1)op E(2) {E.CODE:= E(1).CODE||E(2).CODE||op} E->(E(1)) { E.CODE := E(1).CODE} E->id { E.CODE := id} 2、利用实验5中的算符优先分析算法,结合上面给出的语义动作实现逆波兰式的构造
MyComplier
- 实现词法分析、递归语法分析、算符优先文法分析 文法比较简单、可以尝试修改-easy complier
code
- 算符优先语法分析程序的设计和实现(编译原理作业)-Design and implementation (compiler principles job) operator precedence parser
算符优先算法
- 是一个编译原理的算符优先算法。能够通过算符优先分析方法的实现,加深对自下而上语法分析方法的理解。(It is an operator precedence algorithm for a compiler principle. Through the realization of the operator priority analysis method, we can deepen the understanding of the bottom-up grammar analysis meth