CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - 中缀表达式 后缀表达式

搜索资源列表

  1. aa

    0下载:
  2. 简单的一遍编译器输入中缀表达式输出后缀表达式-Again a simple compiler input infix expression output suffix expressions
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-04
    • 文件大小:9007
    • 提供者:linhei
  1. Caluate

    0下载:
  2. 将中缀表达式转换为后缀表达式,并计算任意四则运算表达式的结果,采用链表和队列实现,非文法和状态机-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-grammar and the state machine
  3. 所属分类:Other systems

    • 发布日期:2017-03-25
    • 文件大小:7126
    • 提供者:wuwenxi
  1. infixcaculator

    0下载:
  2. 根据用户输入的中缀表达式,将其转化为后缀表达式并求值。-Based on user input infix expression into a suffix of its expression and evaluated.
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:1614
    • 提供者:zzy
  1. Expression

    0下载:
  2. 把中缀表达式转换为后缀表达后,求表达式的结果。用到栈和队列-Infix expression to convert the expression of suffix, and the results of expressions. Used stack and queue
  3. 所属分类:Other systems

    • 发布日期:2017-04-25
    • 文件大小:9818
    • 提供者:Allan
  1. convert

    0下载:
  2. 将由数字和四则运算符组成的后缀表达式变换为中缀表达式。输入的后缀表达式包含的运算符不超过15个。要求转换后的中缀表达式中不应出现不必要的括号。例如,整个表达式两端的括号要省略,不影响原计算顺序的括号要省略。-Will be 4 numbers and the composition of the suffix operator expressions transform infix expression to. Enter the suffix operator expression does
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:632
    • 提供者:QQQQQ
  1. Stack

    0下载:
  2. 栈的定义,C++定义的栈的基本操作 用于栈的操作练习 表达式求值,中缀转后缀-Stack
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:509514
    • 提供者:范志东
  1. Expressionconversation

    0下载:
  2. 表达式转换,中缀表达式变后缀表达式并求值。有栈中内容变化说明。-Expression conversion infix postfix expression and the expression changes evaluated. There are changes in the contents of the stack instructions.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:999055
    • 提供者:高仁杰
  1. biaodashiqiuzhi

    0下载:
  2. 通过该程序可以计算前缀、中缀和后缀表达式的值。-Through the program can calculate the prefix, infix and postfix expressions value.
  3. 所属分类:Other systems

    • 发布日期:2017-03-31
    • 文件大小:375742
    • 提供者:许娜娜
  1. zhongzhui

    1下载:
  2. 本程序能将运算式从中缀表达式转换为后缀表达式,并计算运算式的值。暂时仅可计算正整数之间的运算。暂时无法处理负数,要计算负数请用 (0-n) 的形式。输入仅含数字0~9及+、-、*、/、(、)的式子,并在结尾处加 # 字作为结束符。-This program can convert an expression from infix expressions to postfix expressions, and calculate the expression value. Calculate th
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-03
    • 文件大小:52079
    • 提供者:moon walker
  1. zhongzhui

    0下载:
  2. 中缀表达式,可以将中缀转换为后缀,并且计算四则运算式-zhongzhui
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-23
    • 文件大小:17226
    • 提供者:胡乔
  1. Infix_expression

    0下载:
  2. 编写一程序直接计算任意输入的中缀表达式的值,且不能采用先转换到后缀表达式再计算的方式。-Procedures for the preparation of a direct calculation of arbitrary input infix expression values, and can not be converted to a postfix expression using the first re-calculated way.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:1305
    • 提供者:秦稼轩
  1. exchange

    0下载:
  2. (1)实现中缀表达式转换成后缀表达式 (2)计算表达式的值 -(1) implementation infix expression into postfix expression (2) Calculate the value of the expression
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-08
    • 文件大小:1396
    • 提供者:Beaug
  1. PPT4

    0下载:
  2. 编写程序实现将中缀算术表达式转为后缀表达式,并利用栈和后缀表达式计算表达式的值-Programming to achieve infix arithmetic expressions to postfix expressions, postfix expression using stack and calculate the value of the expression
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:885098
    • 提供者:安全卫士
  1. expression

    0下载:
  2. 实验要求把中缀表达式转换成为后缀表达式,然后再对后缀表达式求值。其中要利用栈,数组等。-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.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-04
    • 文件大小:1603
    • 提供者:haha
  1. calculator

    0下载:
  2. 自制学生计算器,使用C++6.0编写,仿卡西欧计算器界面,使用中缀转后缀表达式,可以计算复杂的数学表达式-calculator written by C++6.0,Casio calculator interface, infix turn suffix expression,calculate complex mathematical expressions
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-05
    • 文件大小:55464
    • 提供者:
  1. main

    0下载:
  2. 问题描述   中缀表达式就是我们通常所书写的数学表达式,后缀表达式也称为逆波兰表达式,在编译程序对我们书写的程序中的表达式进行语法检查时,往往就可以通过逆波兰表达式进行。我们所要设计并实现的程序就是将中缀表示的算术表达式转换成后缀表示,例如,将中缀表达式 (A 一 (B*C 十 D)*E) / (F 十 G ) 转换为后缀表示为: ABC*D十E*—FG十/ 注意:为了简化编程实现,假定变量名均为单个字母,运算符只有+,-,*,/ 和^(指数运算),可以处理圆括号(),
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:1439
    • 提供者:yyz
  1. cPP_code

    0下载:
  2. 简单用c++实现 中缀表达式-后缀表达式 之间的转换-Simple to achieve with c++ infix expression- the conversion between postfix expression
  3. 所属分类:Other systems

    • 发布日期:2017-05-12
    • 文件大小:2944576
    • 提供者:黄旭烽
  1. data-structure

    0下载:
  2. 在学习数据结构时完成的几个小的编程练习,大家可以参考参考,分别是中缀转后缀表达式,约瑟夫问题,一元多项式相乘-Upon completion of the study data structure of several small programming exercises, you can refer to the reference, which are in turn postfix infix expression, Joseph problems, one yuan polynomia
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:2410
    • 提供者:julie
  1. Convert-infix

    0下载:
  2. 问题描述   中缀表达式就是我们通常所书写的数学表达式,后缀表达式也称为逆波兰表达式,在编译程序对我们书写的程序中的表达式进行语法检查时,往往就可以通过逆波兰表达式进行。我们所要设计并实现的程序就是将中缀表示的算术表达式转换成后缀表示,例如,将中缀表达式 (A 一 (B*C 十 D)*E) / (F 十 G ) 转换为后缀表示为: ABC*D十E* FG十/ 注意:为了简化编程实现,假定变量名均为单个字母,运算符只有+,-,*,/ 和^(指数运算
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:1143
    • 提供者:王乐
  1. PostTest

    0下载:
  2. 将给定的中缀表达式转化成后缀表达式,利用栈, 将运算符不断的相比较其优先级来进行表达式的生成(Given the infix expression into postfix expression)
  3. 所属分类:其他

    • 发布日期:2017-12-21
    • 文件大小:8192
    • 提供者:坏亻
« 12 3 »
搜珍网 www.dssz.com