Welcome![Sign In][Sign Up]
Location:
Search - operator priority grammar

Search list

[ELanguageWinsuanfu007

Description: 算符优先文法分析器的例子,vc++6.0制作-operator priority grammar analyzer example, produced 6.0 vc
Platform: | Size: 35849 | Author: mark | Hits:

[ELanguagesuanfuyouxian

Description: 非常不错的算符优先文法..课程设计时做的,界面不错,输出了FirstVt,LastVt,算符优先表,输出结果比较详细-very good operator priority .. grammar courses designed to do, good interface, the output of FirstVt, LastVt, operator priority list, a more detailed output
Platform: | Size: 42304 | Author: swb | Hits:

[CSharpsuanfu

Description: 用算符优先文法制作的算符优先分析器,实现了FIRSTVT跟LASTVT的输出跟优先表的输出以及栈的输出以及到文件的输出。-priority grammar operator with the operator priority to the production analyzer, achieved with LASTVT FIRSTVT output with the output of the priority list and stack output and the output of the document.
Platform: | Size: 10240 | Author: 姜鹏 | Hits:

[ELanguageWinsuanfu007

Description: 算符优先文法分析器的例子,vc++6.0制作-operator priority grammar analyzer example, produced 6.0 vc
Platform: | Size: 35840 | Author: mark | Hits:

[ELanguagesuanfuyouxian

Description: 非常不错的算符优先文法..课程设计时做的,界面不错,输出了FirstVt,LastVt,算符优先表,输出结果比较详细-very good operator priority .. grammar courses designed to do, good interface, the output of FirstVt, LastVt, operator priority list, a more detailed output
Platform: | Size: 41984 | Author: swb | Hits:

[ELanguage1

Description: 编译原理课程设计,采用算符优先分析算法,对G[S]所定义的赋值语句进行语法分析,并在语法分析过程中将所输入的扶植语句翻译为四元式。-Compilation Principle curriculum design, the use of operator priority analysis algorithms, the G [S] defined by assignment statements for grammar analysis and parsing process entered foster statements translated into quaternion type.
Platform: | Size: 2048 | Author: 寿帆 | Hits:

[ELanguage040410204

Description: 算符优先文法 1. 可以使用任何语言来完成,例如:Java、C、C++。 2. 文法采用常用的方式进行描述,例如:S→aA。 3. 以文件方式读取文法。 4. 分别求出每一个非终结符的FIRSTVT和LASTVT集。 5. 画出算符优先关系表。 6. 判定读入的文法是否是算符优先文法。 7.给定的任意符号串判定是否是文法中的句子,将分析过程用计算机打印出来。 -Operator priority Grammar 1. You can use any language to accomplish, such as: Java, C, C++. 2. Grammar used to describe commonly used methods, such as: S → aA. 3. To read the grammar of papers. 4. Were obtained at each end of a non-FIRSTVT and LASTVT set. 5. Draw operator precedence relations table. 6. To determine whether or not read the grammar is the grammar operator priority. 7. The given string to determine whether any symbol is the grammar of the sentence, will analyze the process of using the computer print out.
Platform: | Size: 91136 | Author: 狐狸 | Hits:

[ELanguageparser

Description: 编译器的词法分析函数,包含算符优先文法,过程有关结构等部分,具体执行词法分析-Compiler lexical analysis function, including the operator priority grammar, structure and some other process, the specific implementation of lexical analysis
Platform: | Size: 3072 | Author: 陈鑫军 | Hits:

[Data structsPrecede

Description: 用算符优先法对算术表达式求值的过程。要求以字符序列的形式从终端输入语法正确的、不含变量的整数表达式。实现对算术四则混合运算表达式的求值,并在求值中运算符栈、运算数栈、输入字符和主要操作的变化过程。-Operator priority method with arithmetic expression evaluation process. Request to form a sequence of characters from the terminal input grammar correct, non-integer variable expression. 4 to realize a mixed computing arithmetic expression evaluator, and evaluation of operator stack, stack operands, input characters and major changes in the course of operation.
Platform: | Size: 1024 | Author: 叶子 | Hits:

[ELanguageyu`fa

Description: 算符优先语法编译器,VC6.0下运行.希望对大家有用.-Operator priority grammar compiler, VC6.0 run. Hope useful for everyone.
Platform: | Size: 297984 | Author: pengchuang | Hits:

[ELanguagesufuyouxian

Description: 算符优先,先输入语法规则,就可求出FIRSTVT及LASTVT,然后给出算符优先关系表-Operator priority, first enter the grammar rules can be obtained FIRSTVT and LASTVT, and then give priority to the relationship between operator table
Platform: | Size: 2048 | Author: 刘强国 | Hits:

[ELanguageyufafenxiqi

Description: 语法分析器(C++)源代码+其详细的课程设计报告 输入的文法可以消除左递归并提取公共左因子求出文法的非终结集合——FIRST和FOLLOW集并对输入的算符优先文法,构造算符优先关系表 -Parser (C++) Source code its detailed report on curriculum design input left recursive grammar can be eliminated and the public left factor extract derived grammar of non-end collection- FIRST and FOLLOW set of the input operator priority grammar, operator precedence relations structure table
Platform: | Size: 104448 | Author: michelle | Hits:

[Windows Developsuanfuyouxian

Description: 对描述算符表达式的算符优先文法G[E],给出算符优先分析的实验结果。-To describe the operator expression operator priority grammar G [E], are given priority operator analysis of the experimental results.
Platform: | Size: 32768 | Author: jing | Hits:

[File Format85375536BiaoDaShiQiuZhiShiYan

Description: 算符优先文法 -Operator Prior operator priority grammar grammar
Platform: | Size: 77824 | Author: zhx | Hits:

[ELanguagesuanfuyouxianfenxiqi

Description: 【目的】 设计一个算符优先分析器,理解优先分析方法的原理。 【要求】 使用算符优先分析算法分析下面的文法: E’ → #E# E → E+T | T T → T*F | F F → P^F | P P → (E) | i 其中i可以看作是一个终结符,无需作词法分析。具体要求如下: 1. 如果输入符号串为正确句子,显示分析步骤,包括分析栈中的内容、优先关系、输入符号串的变化情况; 2. 如果输入符号串不是正确句子,则指示出错位置。 -[Objective] To design a priority analyzer operator, understanding the principle of priority analysis. ] [Requirements analysis algorithm using the operator priority grammar analysis of the following: E →# E# E → E+ T | TT → T* F | FF → P ^ F | PP → (E) | i which i can be seen as is a terminator, no analysis of Authors. Specific requirements are as follows: 1. If you enter the correct sentence for the string of symbols, showing analysis steps, including analysis of the contents of the stack to give priority to the relationship between input symbols string changes 2. If the input string is not correct sentence symbols are also given the wrong location .
Platform: | Size: 3072 | Author: 王东旭 | Hits:

[CSharpsfyxwfsj

Description: c#编写的算符优先文法编译器的源代码用于编译原理-c# prepared operator priority grammar compiler source code used to compile the principle
Platform: | Size: 63488 | Author: hwl | Hits:

[Windows Developsuanshubiaodashiqiuzhi

Description: 1、 以字符序列的形式从终端输入语法正确的、不含变量的证书表达式。利用一定的运算符优先关系,实现对算术四则混合运算表达式的求值,并且在求值中运算符栈、运算数栈、输入字符和主要操作的的变化过程。 2、 设置运算符栈和运算数栈辅助分析算符的优先级。 3、 在读入表达式的字符序列的同时,完成运算符和运算数的识别处理,以及相应的运算。 4、 在识别处运算符的同时,要将其字符序列形式转换成整数形式。 5、 在程序的适当的位置输入运算符栈、运算数栈、输入字符和主要操作内容。 -1, to form a sequence of characters input from the terminal grammar correct, non-variable expression of the certificate. The use of a certain operator precedence relations and the realization of the four mixed arithmetic expression for computing the value, and value in order to stack operator, computing the number of stacks, input characters and major changes in the course of the operation. 2, set up operator stack operands stack and operator-assisted analysis of the priority. 3, in the time sequence of characters into the expression at the same time, the completion of operator and operator identification numbers, as well as the corresponding arithmetic. 4, in the identification Office operator at the same time, to form the character sequence into the form of an integer. 5, in place procedures for the importation of the operator stack, the number of stack operations, input characters and the main operation of the content.
Platform: | Size: 1024 | Author: 李涛 | Hits:

[ELanguageoperator-precedence-grammar

Description: 编译原理课程设计--算符优先文法(已知算符优先矩阵,输入句子,可以判断是否合法),程序保证可以运行,自己写的-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 own
Platform: | Size: 5343232 | Author: ruirui | Hits:

[ELanguageOperator-priority-grammar-analysis

Description: 算符优先文法实现词法分析和语法分析,算符优先关系表-Operator precedence grammar, lexical analysis and parsing, operator precedence table
Platform: | Size: 268288 | Author: adcc | Hits:

[ELanguageOperator-precedence-parser

Description: 算符优先分析是基于文法满足算符优先文法的基础上施加的一种自底向上的一种语法分析方法。通过对给定的文法构造算符优先分析表和实现某个符号串的分析,掌握算符优先分析法的基本思想和实现过程。-Operator priority analysis is based on operator precedence grammar grammar satisfy imposed on the basis of a bottom-up approach a grammatical analysis. Through a given operator precedence grammar structure analysis and implementation of a symbol string table analysis, analysis of operator precedence grasp the basic ideas and implementation process.
Platform: | Size: 2616320 | Author: 葛骁倩 | Hits:
« 12 3 4 5 »

CodeBus www.codebus.net