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

搜索资源列表

  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. Stack

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

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

    0下载:
  2. 用C++编写的一个简单计算器,可以实现将中缀表达式转化为后缀表达式,并计算输出表达式的值,利用了STL中的栈-using C++ make a calculator which can used to make middle pression into fix pression and calculate the value
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:669874
    • 提供者:鱼宝
  1. Answer1

    0下载:
  2. 用C++实现了计算器,用栈实现了混合运算,直接用中缀表达式求值 -Calculator c++
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-04
    • 文件大小:1410
    • 提供者:张鹭
  1. calculator

    0下载:
  2. 用C++语言写的输入中缀表达式的计算器(《数据结构—使用C++语言描述》的上机作业)-calculator C++
  3. 所属分类:Other systems

    • 发布日期:2017-11-27
    • 文件大小:1506681
    • 提供者:chipo
  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. ConsoleApplication1

    0下载:
  2. 这是一个C#编写的中缀表达式计算器,功能为输入一个表达式后,能够直接输出结果-It is written in a C# expression calculator function can directly enter an expression output
  3. 所属分类:Other systems

    • 发布日期:2017-11-13
    • 文件大小:28512
    • 提供者:阿凤
  1. noname

    0下载:
  2. 2. 输入一个中缀表达式,构造表达式树,以文本方式输出树结构。 输入:例如,输入a+b+c*(d+e) 输出:以缩进表示二叉树的层次,左——根、右——叶、上——右子树、下——左子树 ――――――――――――――――――― e + d * c + b + a ―――――――――――――――――――――― -2 Enter an infix expression constru
  3. 所属分类:Other systems

    • 发布日期:2017-04-04
    • 文件大小:2050
    • 提供者:wdl
  1. main

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

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

    0下载:
  2. 控制台实现中缀表达式的计算器,OBJECTIVE-C,Z在code::blocks中编写,GCC编译-Console achieve infix expression calculator
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-23
    • 文件大小:35448
    • 提供者:偶宇
  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. CPP-into-postfix-expression

    0下载:
  2. 这个程序是用C++编写的,编写时用到的环境是VC++6.0,程序作用是将中缀表达式转换为后缀表达式-This program is written in C++, when used in the preparation of the environment is VC++6.0, the role of the program is to convert infix expression postfix expression
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-02
    • 文件大小:529716
    • 提供者:ZHF
  1. transform

    0下载:
  2. C++源码中缀表达式运算,实现多级运算!-Infix expression to postfix expression, to achieve multi-level computing oh
  3. 所属分类:Other systems

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

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

    • 发布日期:2017-04-12
    • 文件大小:1143
    • 提供者:王乐
搜珍网 www.dssz.com