搜索资源列表
-
0下载:
利用堆栈进行表达式的 Infix -> postfix 转换
适合大专院校计算机专业数据结构课参考
用法:
输入infix表达式为:(3+2*3)^2 则 转换位postfix表达式 323*+2^
进而可以计算出表达式的值为81
目前bug: 主要作原理演示用,只能处理1位数字变量,且变量值不可太大-use of the stack for expression Infix -
-
-
0下载:
数据结果实验 表达式求值
中缀表达式转后缀表达式求值-Results of experimental data to evaluate the expression in infix postfix expression evaluation turn
-
-
0下载:
算术表达式求值:
中缀表达式求值;
将中缀转换成后缀表达式并求值-Arithmetic expression evaluation: infix expression evaluation to infix into postfix expression and evaluates
-
-
0下载:
中缀变后缀表达式求值:输入表达式,#为结束符(如1+2#),程序会自动给出后缀表达式,并给出最终计算结果。程序中部分地方有注释-Variable postfix infix expression evaluation: Enter the expression,# to end the character (eg, 1+2#), the program will automatically give postfix expression, and gives the end result. So
-
-
0下载:
中缀表达式 后缀表达式:不包含括号,运算符放在两个运算对象的后面,所有的计算按运算符出现的顺序,严格从左向右进行-Infix expression postfix expression: does not contain parentheses, operator on two operands in the back, all the calculations appear in the order according to operator, strictly from left to ri
-
-
0下载:
以字符序列的形式从终端输入语法正确的、不含变量的整数表达式,利用给定的算符优先关系把中缀表达式转换成计算机容易处理的后缀表达式。本实验中操作数规定为1位数字字符,运算符只有+、-、*、/。-In the form of a sequence of characters entered from the terminal grammatically correct, non-integer variable expression, using the given operator preceden
-
-
0下载:
Java版运算表达式解析器
主要功能:
对有括号的四则运算解析并求解.
支持多种表达式类型
思路:
1.把中缀表达式转化成后缀表达式
2.从后缀表达式得到解
注意:
该版本只支持1.6JDK,如果想替换成1.5JDK改替换LinkedList的几个方法就行了.
详细内容:
http://jomper.javaeye.com/blog/464906-Java version of computing expressions parser mai
-
-
0下载:
Converts Infix expression to postfix expression
-
-
1下载:
利用栈将中缀表达式转化成后缀表达式并计算-Using the stack to postfix infix expression into an expression and calculate
-
-
0下载:
用栈实现中缀转化为后缀表达式的C、C++程序。-Stack implementation using infix into postfix expression C, C++ program.
-
-
0下载:
表达式求值***
将中缀表达式转换为后缀表达式。假设输入的算法表达式的运算符只有“+、-、×、/、(、)”这几种。
要求:用栈完成;首先要判断输入的表达式括号是否配对,在正确表达式的基础上转换为后缀表达式,然后计算结果。
-*** Expression evaluation will be converted to postfix infix expression expression. Assume that the input of the algorithm expressio
-
-
0下载:
用Stack类来实现中缀表达式转化为后缀表达式,并且根据后缀表达式求值-With the Stack class to implement an infix expression into postfix expression, and expression evaluation according to the suffix
-
-
0下载:
实现数据结构中中缀表达式转换为后缀表达式的功能-Data structure is converted to postfix infix expression function expression
-
-
0下载:
2-9进制的数字转换
中缀表达式转换为后缀表达式
字符串中字母的频率及排序
括号配对的验证
链表式储存及功能-2-9 band of the digital conversion infix expression into postfix expression string and sort the letters in parentheses matching the frequency of verification of storage and features list
-
-
0下载:
数据结构作业题
入一个中缀表达式,表达式中有+、-、*、/四种运算以及(、),表达式中的其他符号为大写的字母。求一个算法,得到相应的后缀表达式。
-Job title into a data structure in the infix expression, the expression of four operations in+,-,*,/ and (,), the expression of other symbols to uppercase letters. Find
-
-
0下载:
中缀表达式->后缀表达式->计算结果值 的源码-Infix expression-> postfix expression-> value of the source results
-
-
0下载:
任意输入数学运算表达式分别采用两种算法求值,分别是中缀表达式直接求值和修改成后缀表达式求值。表达式中包含的运算符有:加法+,减法-,乘法*,除法/,括号(),乘方#等运算符。运算符的优先级和结合性符合数学运算法则-Any input math expressions using two algorithms evaluated, infix expression directly evaluated and modified the postfix expression evaluation.
-
-
0下载:
输入中缀表达式,输出后缀表达式,并计算表达式的值,输出结果。-Input the infix expression , and output the postfix expression, and calculate the value of the expression, then output the results.
-
-
0下载:
目前网上没有python的算术表达式解析。现存的算法不能执行。所以自己写了一个。里面注释很详细。有中缀转后缀表达式算法。-Currently online no python arithmetic expression parsing. Existing algorithms can not be performed. So wrote one. Inside very detailed notes. There infix turn postfix expression algorithms.
-
-
0下载:
它是一個關於方程的acm問題。 當用戶輸入信息例如(3 + 2)* 5時,程序將輸出後綴格式。 因此,該程序將中綴轉換為後綴表達式。 這個程序也被系統接受-It is a question of acm equation. When the user enters information such as (3+ 2)* 5, the program will output format suffix. Therefore, the program will convert infix to po
-