搜索资源列表
-
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下载:
中缀变后缀表达式求值:输入表达式,#为结束符(如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
-
-
1下载:
利用栈将中缀表达式转化成后缀表达式并计算-Using the stack to postfix infix expression into an expression and calculate
-
-
0下载:
数据结构,线性表的应用(简单仓库管理)和栈的应用(中缀表达式转后缀表达式)-Data structures, application of linear forms (a simple warehouse management) and applications of stack (switch to postfix infix expression expression)
-
-
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下载:
把中缀表达式转化为后缀表达式……
第一行为T,表示有T组数据;
以下T行每行包含一个字符串,是中缀表达式。
对于每组测试数据数据后缀表达式。-Infix expression to postfix expression into the first act ... ... T, says there are T sets of data the following T lines each line contains a string, is the infix expres
-
-
0下载:
则运算式求值,将四则运算式用中缀表达式表示,然后将它转变成后缀表达式,并且计算结果。
2、 基本要求:要求运用二叉树来实现。
-The expression is evaluated, the four expressions that use the infix expression, and then to transform it into a postfix expression, and results.
2, the basic requirements: Requir
-
-
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下载:
1)从键盘输入任意一个语法正确的(中缀)表达式,显示并保存该表达式。
(2)利用栈结构,把上述(中缀)表达式转换成后缀表达式,并显示栈的状态变化过程和所得到的后缀表达式。
(3)利用栈结构,对上述后缀表达式进行求值,并显示栈的状态变化过程和最终结果。-1) input from the keyboard correct any syntax (infix) expressions, display and save the expression. (2) the use of
-
-
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下载:
输入表达式 建立二叉树 通过周游 输出 中缀后缀前缀表达式-Enter the expression to establish a binary tree output by traveling prefix infix postfix expression
-
-
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.
-