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

搜索资源列表

  1. 表达式转换求值 C++

    0下载:
  2. 表达式的转换求值 利用栈 中缀表达式转后缀 直接将扩展名转为CPP即可调试运行
  3. 所属分类:Windows编程

  1. Expreesion

    1下载:
  2. 一个表达式和一棵二叉树之间,存在着自然的对应关系。写一个程序,实现基于二叉树表示的算术表达式Expression的操作。 【基本要求】 【一】【必做部分】 假设算术表达式Expression内可以含有变量(a-z),常量(0-9)和二元运算符(+,-,*,/,^(乘幂))。实现以下操作: (1)ReadExpr(E)――以字符序列的形式输入语法正确的前缀表达式并构造表达式E。 (2)WriteExpr(E)――用带括号的中缀表达式输出表达式E。 (3)Assign(V,c
  3. 所属分类:Windows Develop

    • 发布日期:2016-11-19
    • 文件大小:250880
    • 提供者:snake
  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. Functions

    0下载:
  2. 运算表达式的计算,c编写,首先将中缀表达式转换为后缀表达式,再用栈将结果输出-Calculation of computing the expression, c preparation, the first expression will be converted to infix suffix expressions, and then stack the results output
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-25
    • 文件大小:179747
    • 提供者:zhouxiaoming
  1. calculator

    0下载:
  2. 中缀表达式的C++实现,包括多个实用头文件-Infix expressions C++ implementation, including a number of practical header files
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:440612
    • 提供者:Richard
  1. XReversePolishNotation

    0下载:
  2. Visual C++ 6 编写的控制台程序,开程序接受一个以#结尾的中缀表达式(如a+(b*d)#),输出对应的后缀(逆波兰)表达式-Visual C++ 6 console program written in, open process to accept a# at the end of infix expression (such as a+ (b* d)#), output of the corresponding suffix (reverse Polish) expression
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-15
    • 文件大小:37109
    • 提供者:zhouxiang
  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. infix-to-postfix-and-evaluated

    1下载:
  2. C++源码。输入中缀表达式,将其转成后缀表达式并求值。-C++ source. Enter the infix expression to turn them into postfix expression evaluation.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:1834
    • 提供者:zdcts
  1. zhongzhui

    0下载:
  2. 用C++做的中缀表达式求值 适合C++初学者提高编程能力-Done in C++ infix expression evaluation
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:21944
    • 提供者:刘华
  1. calculator

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

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

    1下载:
  2. C++数据结构中缀表达式转后缀表达式源码集,把中缀表达式转换为后缀表达式,返回后缀表达式的长度(包括空格),由后缀表达式计算出数值结果,遇到右括号将其对应左括号后的操作符(操作符栈中的)全部写入后缀表达式,若当前的操作符小于等于栈顶操作符的优先级时,将栈顶操作符写入到后缀表达式,重复此过程-C++ data structures Infix expression to postfix expression source set, the infix expression convert post
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:3006
    • 提供者:jpudn93
  1. pragma once

    0下载:
  2. 中缀表达式转后缀表达式并求值,C++,栈的应用,(expression evaluation)
  3. 所属分类:Windows编程

    • 发布日期:2017-12-28
    • 文件大小:15360
    • 提供者:三笠
  1. 中缀表达式求值

    0下载:
  2. 中缀值表达式算法,比较实用,学VC 的同学可以看看。。。(Infix expression algorithm, more practical value, to learn VC students can see.)
  3. 所属分类:.net编程

    • 发布日期:2017-12-27
    • 文件大小:56320
    • 提供者:death2049
« 12 »
搜珍网 www.dssz.com