搜索资源列表
中缀表达式求值
- 中缀表达式求值,运用了堆栈进行存储,并支持小数的计算-expression which evaluates superintendent, the use of stack for storage, and support for the calculation of the minority
中缀变后缀
- 这个c语言程序实现中缀表达式变为后缀表达式,并且实现其计算-the language program which is made up of expressions into a suffix expression, and its calculation
逆波兰表达式
- 计算用运算符后缀法表示的表达式的值。后缀表达式也称逆波兰表达式,比中缀表达式计算起来更方便简单些,中缀表达式要计算就存在着括号的匹配问题,所以在计算表达式值时一般都是先转换成后缀表达式,再用后缀法计算表达式的值。如:表达式(a+b*c)/d-e用后缀法表示应为abc*+d/e-。只考虑四则算术运算,且假设输入的操作数均为1位十进制数(0—9),并且输入的后缀形式表达式不含语法错误-calculated Operators suffix
postfix
- 中缀表达式转中缀表达式,后缀表达式的计算-which is made up of ordinary Chinese expression to expression, the expression calculation Suffix
中缀变后缀
- 这个c语言程序实现中缀表达式变为后缀表达式,并且实现其计算-the language program which is made up of expressions into a suffix expression, and its calculation
逆波兰表达式
- 计算用运算符后缀法表示的表达式的值。后缀表达式也称逆波兰表达式,比中缀表达式计算起来更方便简单些,中缀表达式要计算就存在着括号的匹配问题,所以在计算表达式值时一般都是先转换成后缀表达式,再用后缀法计算表达式的值。如:表达式(a+b*c)/d-e用后缀法表示应为abc*+d/e-。只考虑四则算术运算,且假设输入的操作数均为1位十进制数(0—9),并且输入的后缀形式表达式不含语法错误-calculated Operators suffix
Calculator_2
- 由于不上传就不能下载 所以我随便传了一个这个程序能计算一个中缀表达式 不能处理负数 (呵呵 还没写好)-Because doing not ascend to spread and then can t wnload so I spread literally a this procedure can compute a the inside expresses the type can t handle minus quantity(
中缀表达式求值
- 中缀表达式求值,运用了堆栈进行存储,并支持小数的计算-expression which evaluates superintendent, the use of stack for storage, and support for the calculation of the minority
houzhui
- 把中缀表达式转换为后缀表达式并计算结果~~第一个编译试验作业~-sergeant Chinese expression for the conversion and extension expression results ~ ~ a compiler test operations ~
expression
- 中缀表达式计算的堆栈算法的实现,在tc或vc++下编译通过-Infixation expression stack algorithm for the calculation of the realization in tc or under compile vc
EvalPostExp
- acm竞赛参考代码,利用中缀表达式计算后缀表达式-acm contest reference code, the use of infix expression calculation expression suffix
8
- 8、对中缀表达式(如(2+3.25)*4=)求组,读入表达式的各项滤去空格,直到读入"=",处理过程中若发生错误,则输出相应的错误信息,读入结束后,计算表达式中的各项,打印表达式的结果-8, the infix expression (such as (2+ 3.25)* 4 =) for group, read into the expression of the least squares spaces, until the rea
caculate
- 大二 数据结构 课程设计 很有用 很规范 计算表达式的值 问题描述:对于给定的一个表达式,表达式中可以包括常数、算术运行符和括号,编写程序计算表达式的值。可从键盘输入一个正确的中缀表达式,将中缀表达式转换为对应的后缀表达式,计算后缀表达式的值。-Sophomore data structures course design is very useful to standardize the calculation of the v
biaodashiqiuzhi
- 实现了表达式的求值。当你输入一般的表达式,程序会实现了转化为前缀表达式,中缀表达式以及后缀表达式,并分别计算出结果。-Achieved expression is evaluated. When you enter a general expression, the program will be realized into a prefix expression infix expression as well as the suff
Cpp2
- 程序是把中缀表达式转化成后缀表达式,并通过后缀表达式进行表达式的计算,通过栈试验代码的程序。
Caluate
- 将中缀表达式转换为后缀表达式,并计算任意四则运算表达式的结果,采用链表和队列实现,非文法和状态机-Infix expression would be converted to suffix expressions, and calculate the arithmetic expression of arbitrary results, the use of linked lists and queues to achieve, non
3071102672_A
- 计算后缀表达式,先将中缀式转化为后缀式,在进行计算,有较高的效率-Suffix calculated expression, first in the up-type into a suffix-style, in terms of higher efficiency
jisuan
- 本程序的主要功能在于中缀表达式的计算, 其中运算符有加,减,乘,除,乘幂基本运算符 ,运算数为实数之间运算,并可以实现循环 计算..完成基本操作是进行字符处理,栈的使用. -The primary function of this program is made up of the calculation of expression, in which operators are add, subtract, multi
c++2
- 编写一个能够计算中缀表达式的程序,其中关于中缀表达式有如下的要求: 1)表达式中只处理二元运算符 2)表达式中出现的运算符为:+、-、*、/、^(幂运算)、(),其中幂运算符的优先级别比*和/的高,但是其结合性为右结合 3)希望表达式中能够处理实数 -编写一个能够计算中缀表达式的程序,其中关于中缀表达式有如下的要求: 1)表达式中只处理二元运算符 2)表达式中出现的运算符为:+、-、*、/、^(
CPP
- 编写一个计算中缀表达式计算的程序。运算符包括+、-、*、/、(、),操作数可以是多位数和浮点数。要求程序从输入文件input.txt读取表达式,并将计算结果写入输出文件output.txt,计算结果保留小数点后2位,四舍五入。输入表达式有错误时,输出“错误”。(Calculation of infix expression)