搜索资源列表
expression_request
- 计算表达式是实现课程设计语言的基本问题之一,也是栈的应用的一个典型例子。1)要求以字符序列的形式从终端输入语法正确的、不含变量的整数表达式。利用教科书表3.1给出的算符优先关系,实现对算术四则混合运算表达式的求值。2)要求在屏幕的适当位置显示运算符栈,运算数栈,输入字符和主要操作的变化过程!3)要求最好有友好的功能和仿真界面,运算数可以是实数。
intcalculate
- 以字符形式从终端输入语法正确的,不含变量的整数表达式。利用算符优先关系,实现对算术四则混合运算表达式求值。-to form characters from the terminal input grammar correct, the non-integer variable expression. Operator priority relations and the realization of the four arithmetic operations mixed expression
LRTrans1
- 工程LRTrans1,LRTrans1为一个加、乘(适当扩充可为四则)运算表达式的SLR语法计算器
Precede
- 用算符优先法对算术表达式求值的过程。要求以字符序列的形式从终端输入语法正确的、不含变量的整数表达式。实现对算术四则混合运算表达式的求值,并在求值中运算符栈、运算数栈、输入字符和主要操作的变化过程。
biaodashi.cpp
- 表达式求值以字符序列的形式从终端输入语法正确的、不含变量的数据表达式。利用教科书表3.1给出的算符优先关系,实现对算术四则混合运算表达式的求值,并仿照教科书的例子3-1演示在求值中运算符栈、运算数栈、输入字符和主要操作的变化过程.
calc
- 一个可以计算表达式的代码,支持四则混合运算-One can calculate the expression of the code, support for four hybrid computing
sizeyunsuan
- 以字符序列的形式从键盘输入语法正确的、不含变量的整数表达式,利用给定的算符优先关系,实现对算术四则混合运算表达式求值,并打印求值过程中运算符栈、操作数栈的变化过程。-In the form of a sequence of characters from the keyboard input grammatically correct, non-integer variable expression, using the given operator precedence relations,
suanfa
- 数据结构基本算法演示程序实现: 1、实现KMP模式匹配算法、哈夫曼编码算法、由遍历序列恢复二叉树、Prim算法、Kruskal算法、Floyd算法、Dijkstra算法、拓扑排序、关键路径算法、二叉排序树生成算法(含平衡化)、哈希表生成及哈希查找算法、希尔排序、快速排序、堆排序、归并排序、基数排序。(四则表达式计算、矩阵运算、有向图的强连通分量求解) 2、算法中的链表结构和数组结构的基本操作要求单独函数实现(同组内算法要求共享使用)。 要求数据结构基本算法演示程序具有菜单选择,算法要
Expression-and-derivation
- 以字符序列的方式从终端输入语法正确的,不含变量的整数表达式。利用中缀表达式变为后缀表达式的求值算法实现对算术四则混合运算表达式求值,并演示出在求值中运算符栈,操作数栈,输入字符和主要操作的变化过程。-The way to sequence of characters from the terminal input grammar correctly, do not contain variables integer expression. Use midfix expression of the
Exp
- 使用VC编写的一个表达式计算器,可以进行四则混合运算,括号,工程对数,自然对数,组合数,排列数,阶乘等,本程序使用双向链表进行表达式计算。-VC prepared using an expression calculator, can be four hybrid operation, parentheses, the number of works, the natural logarithm, the number of combinations, arrangement number, f
shiyan2
- 四则混合运算表达式处理。 1. 一逆波兰表示输入的算术表达式。 2. 输出表达式树的各种遍历结果。 3. 打印表达式树。 4. 删除表达式树。 -Four hybrid operation expression processing. 1. That Poland entered a reverse arithmetic expressions. 2. Out all the expression tree traversal results. 3. Print the ex
Function
- 函数计算,函数表达式支持四则混合运算以及复合-Function calculation, the function expression to support four mixed computing and composite
biaodashiqiuzhi
- 设计一个程序,演示用算符优先法对算术表达式求值的过程。利用算符优先关系,实现对算术四则混合运算表达式的求值。 (1)输入的形式:表达式,例如2*(3+4) 包含的运算符只能有 + 、 - 、 * 、 / 、 ( 、 ) ; (2)输出的形式:运算结果,例如2*(3+4)=14; (3)程序所能达到的功能:对表达式求值并输出 -Design a program that demonstrates the value of the process. Arithmetic exp
ExpressionEngine
- 表达式计算引擎,支持四则混合运算,还有部分数学函数-Expression calculation engine that supports four hybrid operation, as well as some mathematical functions
biaodashiqiuzhi
- 以字符序列的形式从终端输入语法正确的,不含变量的整数表达式,利用给定的运算符有限关系,实现对算术四则混合运算表达式的求值。-In the form of a sequence of characters entered grammatically correct, excluding variable integer expression the terminal, using a given operator limited relationship to realize the arith
operationnew
- 四则混合运算表达式的处理。对输入的逆波兰表达式和正常顺序(带括号、运算符优先级)的表达式构造二叉表达式树、输出前序中序后序遍历结果、树状输出、表达式赋值及运算-Handle mixed operation expression of the four. For Reverse Polish Notation input and the normal order (with brackets, operator precedence) expression construct binary exp
Arithmetic-expression-evaluation
- [问题描述] 表达式计算是实现程序设计语言的基本问题之一。也是栈的应用的一个典型例子。设计一个程序,演示用算符优先法或转换成后缀表达式方法对算术表达式进行求值的过程。 [基本要求] 以字符序列的形式从终端输入语法正确的、不含变量的整数表达式。利用中缀表达式向后缀表达式转换的方法,实现对算术四则混合运算表达式的求值。-Expression computing is to achieve one of the basic problems of program design langu
实验2
- 设计一个程序,演示用算符优先法对算术表达式求值的过程。利用算符优先关系,实现对算术四则混合运算表达式的求值。 (1)输入的形式:表达式,例如2*(3+4) 包含的运算符只能有'+' 、'-' 、'*' 、'/' 、'('、 ')'; (2)输出的形式:运算结果,例如2*(3+4)=14; (3)程序所能达到的功能:对表达式求值并输出(A program is designed to demonstrate the process of evaluating arithmetic