搜索资源列表
-
0下载:
通过该程序可以计算前缀、中缀和后缀表达式的值。-Through the program can calculate the prefix, infix and postfix expressions value.
-
-
0下载:
用mfc将一个中缀表达式转换成后缀计算,带计算键盘的-With mfc an infix expression into postfix calculation, with calculation of the keyboard
-
-
0下载:
模仿实现windows下的计算器基本功能,并可以将前缀表达式转化为后缀表达式的功能。-Imitation to achieve the basic functions of the calculator under windows, and the expression can be converted into postfix expression prefix function.
-
-
0下载:
科学计算器
定义字符数组file[]、expression[]分别用于接收输入文件名、输入 文件的内容,定义整形数length用于指示表达式的长度。函数开始 时,以文件方式输入表达式,用expression[]接收输入表达式、length 指示表达式的长度。然后调用IsRightInput()判断输入是否合法,如 果输入不合法则提示输入错误继续输入。如果输入正确,调用 Initial()函数初始化堆栈,调用DealInput()函数处理输
-
-
0下载:
模拟简单计算器,利用堆栈实现,mfc可视化界面,显示后缀表达式及结果。可实现正负浮点数的加减乘除。使用负数请加括号!-Simulate a simple calculator, using the stack implementation, mfc visual interface, and the results show postfix expression. Can achieve positive and negative floating-point addition and subt
-
-
0下载:
表达式是数据运算的基本形式。人们的书写习惯是中缀式,如:11+22*(7-4)/3。中缀式的计算按运算符的优先级及括号优先的原则,相同级别从左到右进行计算。表达式还有后缀式(如:22 7 4 - * 3 / 11 +)和前缀式(如:+ 11 / * 22 – 7 4 3)。后缀表达式和前缀表达式中没有括号,给计算带来方便。如后缀式计算时按运算符出现的先后进行计算。本设计的主要任务是进行表达式形式的转换及不同形式的表达式计算。-Expression is the basic form of dat
-
-
0下载:
利用后缀表达式和符号栈做的cmd计算器,实现了加减乘除以及括号运算-Postfix expression and symbolic stack to do the cmd calculator, addition, subtraction and parentheses computing
-
-
0下载:
简单的计算器应用,适合程序的初学者,后缀表达式转换-Simple calculator application, suitable for beginners of the program, postfix expression conversion
-
-
0下载:
表达式• 表达式树• 表达式求值
输入一个中缀表达式及中缀表达式中字母代表的数值,包含+ - * / 运算符,(),首先转成后缀表达式,然后画出表达式树,最后输出表达式求出的值-Expression expression tree • expression evaluation input the values of the letters on behalf of an infix expression infix express
-
-
0下载:
24点内简易计算器的实现。中缀表达式变为后缀表达式然后求值-Simple calculator within the 24-point implementation. Infix expression into postfix expression is then evaluated
-
-
0下载:
通过中缀表达式到后缀表达式的变换,实现简单四则运算的计算器-By converting infix expression to postfix expression, simple arithmetic calculator
-
-
0下载:
后缀表达式计算器,这里是整个CPP,文件里代码完整,适合初学者阅读使用。-Postfix expression calculator, here is the entire CPP, file integrity code, suitable for beginners to read.
-
-
0下载:
一个简单的计算复杂表达式的值,利用栈,将中缀表达式转化为后缀表达式-A simple calculation of the value of complex expressions, the use of the stack, the infix expressions into postfix notation
-
-
0下载:
控制台应用程序,科学计算器。用来学习中缀表达式转后缀表达式。函数的输入需要一个字母一个字母的输入。-Console application, scientific calculator. Learning to turn postfix notation infix expression. Enter function requires a letter of an alphabet input.
-
-
0下载:
通过算法把中缀表达式转化为后缀表达式并计算出所需要的公式结果-The algorithm takes the infix expression into postfix expression and calculate the required formula results
-
-
0下载:
24点内简易计算器的实现。中缀表达式变为后缀表达式然后求值-Simple calculator within the 24-point implementation. Infix expression into postfix expression is then uated
-
-
0下载:
在原有初级计算器基础上做了些改进,利用后缀表达式求值,能将整个表达式在显示区显示,实现小数与负数运算(Some improvements have been made on the basis of the original primary calculator. By using postfix expression evaluation, the whole expression can be displayed in the display area, and decimal and ne
-