搜索资源列表
nibolan
- 非后缀式用来表示的算术表达式转换为用逆波兰式来表示的算术表达式,并计算用逆波兰式来表示的算术表达式的值。-Suffix used to represent arithmetic expressions arithmetic expression converted to Reverse Polish Notation, and calculate the value of the arithmetic expression Reverse Polish Notation.
main
- 编译原理的作业,计算算术表达式,四则运算-The job of the compiler theory to calculate the arithmetic expression, four operations
jisuanqi
- 编译原理 实现表达式的计算 c/c++语言-Compiler principles to achieve the expression evaluates c/c++ language
calculator
- 用逆波兰式计算数学表达式,用的是C#语言-With Reverse Polish Notation calculate mathematical expressions, using the C# language
Semantic_analyzer
- 自顶向下子程序递归,算术表达式语义分析,实现对算术表达式的值的计算,输入文件格式如,压缩包中的txt文件-a demo of semantic analyse
dehw
- 知道型点值和端点值,用双三次曲线分别计算每一段表达式,并画出图-Matlab know type of point and endpoint value, using cubic spline curve to calculate each expression, and draw a diagram
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中的算符优先分析算法,结合上面给出的语义动作实现逆波兰式的构造