搜索资源列表
-
1下载:
采用递归下降语法制导翻译法,对算法表达式、赋值语句进行语义分析且生成四元式序列-Decline in the use of recursive grammar-translation method guided the algorithm expression, assignment and semantic analysis to generate quaternary sequence
-
-
0下载:
一个用LISP语言编写的语法分析器。使用Bottom-up Chart Parsing算法,程序非常的简单高效,只有二百多行。另外可以自己定义文法和字典。 源代码公开,主要供对语法分析算法和LISP编程感兴趣的人学习使用,也可以使用在自然语言处理的各种实际研究当中。-A language with LISP parser. The use of Bottom-up Chart Parsing algorithm, the procedure very simple and efficient,
-
-
0下载:
北邮编译原理文法分析作业,便于大家学习文法分析的算法-Beijing University of Posts and Telecommunications compiler theory, grammatical analysis of the job, easy to learn grammar analysis algorithm
-
-
1下载:
编写语法分析程序,实现对算术表达式的语法分析。要求所分析算术表达式由如下的文法产生:
E->E+T|E-T|T
T->T*F|T/F|F
F->id|(E)|num
实验要求:在对输入表达式进行分析的过程中,输出所采用的产生式。
编程实现算法4.2,为给定文法自动构造预测分析表。
编程实现算法4.1,构造LL(1)预测分析程序。-Write a parser, parsing arithmetic expressions. Requirem
-
-
0下载:
编译原理算符优先算法源程序,附有CPP代码,程序有说明,用VC打开即可运行-Compiler theory of operator precedence algorithm source, with CPP the code, program descr iption, VC open to run
-
-
0下载:
北邮大三上编译原理,语法分析程序源代码,有:LL(1)语法分析算法,LR(1)语法分析算法。-BUPT junior on compiler theory, syntax analysis program source code, there are: LL (1) parsing algorithm, LR (1) parsing algorithms.
-
-
0下载:
包含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
-
-
2下载:
设计一个四则表达式分析软件,其接受从文件或键盘输入的四则表达式(运算对象支持整数和变量),给出该表达式的二叉树表达形式,并在键盘上按后续遍历方式输出该二叉树。
例如,输入a+b*c,输出 a b c * +
提示:参考下列的设计指导:
递归下降分析法实验设计思想及算法
为G的每个非终结符号U构造一个递归过程,不妨命名为U。U的产生式的右边指出这个过程的代码结构:
(1)若是终结符号,则和向前看符号对照,若匹配则向前进一个符号;否则出错。
(2)若是非终结符号,
-
-
0下载:
关于数值分析的两种简单算法的小应用可以让大家有些了解-About two simple numerical algorithm analysis of small applications so that we can have some understanding
-
-
0下载:
这是一个用C语言写的C-minus编译器。实现了词法分析,语法分析。其中语法分析用的是递归下降算法。-
这是一个用C语言写的C-minus编译器。实现了词法分析,语法分析。其中语法分析用的是递归下降算法。
ON划词翻译ON实时翻译
This is a C language used to write the C-minus compiler. The lexical analysis, syntax analys
-
-
0下载:
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
-
-
0下载:
多用户MIMOzf_mmse预编码算法的性能分析-Performance Analysis of Multi-user pre-coding algorithm MIMOzf_mmse
-
-
0下载:
类_JSON_:已实现JSON解析、生成、编辑的整套方案,并已封装成模块。
未参照任何开源解析算法,经过多次改进已然成为了一个稳定强大的json处理核心。
类_格式化JSON_快速:以类的形式对json文本格式化和反格式化,
类的封装意味着一段超长文本可以分几次加入是没有问题的,不再担心卡机。
JSON调试器:JSON解析模块的附属品,也算是模块的例程,依托强大的
JSON解析、编辑核心已然可以说是最强大的JSON视图调试器,助您快速准确的
找出json文本中的错误原因。
-
-
0下载:
distanc vector analysis motion algorithm for k means data
-
-
0下载:
是一个编译原理的算符优先算法。能够通过算符优先分析方法的实现,加深对自下而上语法分析方法的理解。(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
-