搜索资源列表
算符优先算法
- 一个算符优先算法程序, 实现编译原理中的算符优先算法.-an operator priority algorithm to achieve the principle of compiler operator priority algorithm.
算符优先
- 一个程序,用于判定给定的文法是否为算符优先文法。 实现了:1.文法的机内表示;2. FIRSTVT集和LASTVT集的计算; 3. 算符优先关系矩阵的构造。-a procedure for the determination of grammar to whether the operator priority to grammar. Realized : 1. Grammar said the machines; 2. LASTVT FIRSTVT sets and set computing
算符优先文法
- 算符优先实验,可以输入文法,生成算符优先表,输入句子,生成移近-规约过程。并且还有实验报告。-operator priority experiments can be imported grammar, production operator priority list, input sentence, approached generation-the Statute of the process. And there are experimental report.
miniCalcu
- 迷你计算器,优先级,赋值运算均支持,比如:a=1 a=2 b=3+a a+b-mini calculator, priority level, assignment operator support, such as : a = a = 1 b = 2 3 a a b
(类)设计并实现一个具有并,交差等功能的集合类
- (类)设计并实现一个具有并,交差等功能的集合类 (假设采用顺序存储结构)。编写菜单驱动的C++程序, 利用该类实现集合的并,交差等运算。 -() design and implementation, and have a, perfunctory function of the collection classes (assuming sequential storage structure). Prepare a menu-driven C procedure, and us
operator
- 此算法适用于编译原理课程,他是一种算符优先算法-a algorithm of operator prior
OperatorPrecedenceParser
- 一个算符优先分析器,能对常见的算术表达式语句进行分析。-An operator precedence parser, capable of common arithmetic expression statements for analysis.
operator
- 对键盘输入的表达式,可以实现简单的四则运算表达式计算,包含括号运算-The expression on the keyboard input, you can perform simple arithmetic calculation expressions, including parentheses operator
Design-of-operator-precedence
- 算符优先分析器设计 给定定义算术表达式的算符优先文法如下: G[E]: (1)E->E+T (2)E->E-T (3) E->T (4)T->T*F (5)T->T/F (6)T->F (7)F->P^F (8)F->P (9)P->(E) (10)P->i 编程实现此文法的算法优先分析器,并设输入的文法的句子为: (i*(i+i)-i )/i^i^i 给出输
operator-priority-algorithm
- 本程序是对算符优先算法的简单实现,适合初学编译原理的人参考使用-This program is a simple algorithm to achieve the priority operator, suitable for beginners who compiled reference works
DOS-operator-source
- DOS 操作系统源码,完整的C语言文件包-dos operator system source code
Operator-precedence
- 算符优先算法,非常完整的注释,便于学者研究修改。可直接放在C++工程中,控制台操作。-Operator priority algorithm, a very complete notes, easy to modify scholars. Can be placed directly on the C++ project, the console operator.
operator-precedence-grammar
- 编译原理课程设计--算符优先文法(已知算符优先矩阵,输入句子,可以判断是否合法),程序保证可以运行,自己写的-Compiler theory curriculum design- operator precedence grammar (known operator priority matrix, the input sentence, can determine whether legal) procedures to ensure that you can run, write your
Operator-priority-grammar-analysis
- 算符优先文法实现词法分析和语法分析,算符优先关系表-Operator precedence grammar, lexical analysis and parsing, operator precedence table
Compilation-of-operator-precedence
- 汇编的运算符优先级次序,初学者应该知道-Compilation of operator precedence order
operator-precedence-analysis-code
- 编译原理算符优先算法源程序,附有CPP代码,程序有说明,用VC打开即可运行-Compiler theory of operator precedence algorithm source, with CPP the code, program descr iption, VC open to run
edge-detection-Sobel-operator
- 边缘检测Sobel算子,基于Open CV.-Edge detection——Sobel operator,Based on Open CV.
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
operator-first
- 算符优先分析器,可根据输入的产生式,构造算符优先分析器-Operator precedence parser, according to the input of production, construction operator precedence parser
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