搜索资源列表
-
0下载:
利用堆栈进行表达式的 Infix -> postfix 转换
适合大专院校计算机专业数据结构课参考
用法:
输入infix表达式为:(3+2*3)^2 则 转换位postfix表达式 323*+2^
进而可以计算出表达式的值为81
目前bug: 主要作原理演示用,只能处理1位数字变量,且变量值不可太大-use of the stack for expression Infix -
-
-
0下载:
infix to postfix expression
-
-
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下载:
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
-
-
0下载:
实现表达式求值,表达式树绘制,前缀表达式转换中缀表达式,中缀表达式转换后缀表达式-To achieve expression evaluation, expression tree drawing, prefix expression conversion infix expression, the expression postfix conversion infix 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下载:
实验要求把中缀表达式转换成为后缀表达式,然后再对后缀表达式求值。其中要利用栈,数组等。-Experimental requirements to convert infix expression into postfix expression and then evaluate the expression of the suffix. Which make use of the stack, the array and so on.
-
-
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下载:
输入中缀表达式 输出后缀表达式 并求值-Input infix expression postfix expression and evaluates the output
-
-
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 to postfix expression in C
-
-
0下载:
中缀表达式->后缀表达式->计算结果值 的源码-Infix expression-> postfix expression-> value of the source results
-
-
0下载:
中缀表达式转换为后缀表达式,并且求值,使用C++代码编写-Infix expression into postfix expression
-
-
0下载:
任意输入数学运算表达式分别采用两种算法求值,分别是中缀表达式直接求值和修改成后缀表达式求值。表达式中包含的运算符有:加法+,减法-,乘法*,除法/,括号(),乘方#等运算符。运算符的优先级和结合性符合数学运算法则-Any input math expressions using two algorithms evaluated, infix expression directly evaluated and modified the postfix expression evaluation.
-
-
0下载:
斗地主发牌 定义和使用堆栈 将中缀表达式转换为后缀表达式-Landlords licensing define and use the stack to convert infix expression postfix expression
-