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

搜索资源列表

  1. expression

    2下载:
  2. 利用栈完成算术表达式求值:从键盘或文件中输入算术表达式,计算其结果并显示。要求处理过程为:(1)转换为后缀表达式并输出;(2)对后缀表达式求值并输出。 输入的表达式中可以有整数、实数、括号,运算符包括+、-、*、/、#(代表单目负)。可以多次输入不同的表达式进行计算,直到用户选择“退出”。栈的基本操作可以自己实现,也可以使用系统提供的STL实现。 -Done using an arithmetic expression evaluation stack: file input fr
  3. 所属分类:Other systems

    • 发布日期:2017-03-24
    • 文件大小:429013
    • 提供者:Sw
  1. jiandansuanshushide

    0下载:
  2. 五简单算术表达式的求值 要求: 1、 从键盘输入一个表达式:如(2-(4*5-2))/5=。 2、 操作数仅为一位整数1,2,3,…,9 3、 支持+ - * / ()等符号。 4、 支持运算符的优先级。 5、 支持括号的嵌套。 -Five simple arithmetic expression evaluation requirements: 1, from the keyboard input an expression: If (2- (4* 5-2))
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:1143
    • 提供者:王玉亮
  1. asdf

    0下载:
  2. 算术表达式求值演示,栈的应用的一个典型的例子,演示用算符优先法对算术表达式求值的过程-Arithmetic expression evaluation demonstration, the application stack, a typical example, demonstrate the priority operator arithmetic expression on the process of evaluation
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:1134
    • 提供者:王超
  1. suanshubiaodashiqiuzhi

    0下载:
  2. 把算术表达式转换成后缀表达式然后求值。数据结构实验,包含实验报告。-Put arithmetic expressions into expressions suffix then evaluated. Experimental data structure that contains the report of the experiment.
  3. 所属分类:Other systems

    • 发布日期:2017-04-04
    • 文件大小:905195
    • 提供者:傅其龙
  1. zz

    0下载:
  2. 1、演示用算符优先法对中序算术表达式求值的过程。2、(扩展)中序表达式变为后序表达式并计算表达式值。
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:1864
    • 提供者:gsx
  1. calculator

    0下载:
  2. 一、实验一:带括号的算术表达式求值 二、实验的目的和要求: 1.采用算符优先数算法,能正确求值表达式 2.熟练掌握栈的应用 3.熟练掌握计算机系统的基本操作方法,了解如何编辑、编译、链接和运行一个C++程序 -1, experiment 1: arithmetic expressions with parentheses evaluated two experimental purposes and requirements: 1. Using operators pr
  3. 所属分类:Other windows programs

    • 发布日期:2014-09-20
    • 文件大小:416646
    • 提供者:liujianye
  1. shujujiegou2

    0下载:
  2. 数据结构的实验报告,利用栈的基本操作实现一个算术表达式的求值的程序。利用C语言编写-Data structure, the use of the basic operation of the stack to achieve an arithmetic expression evaluation procedures. The use of C language
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:10621
    • 提供者:andy
  1. 001

    0下载:
  2. 算术表达式求值演示,以字符序列的形式从终端输入语法正确的、不含变量的整数表达式-Arithmetic expression evaluation demo
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:1575
    • 提供者:刘大饼
  1. include

    0下载:
  2. 数据结构题集C语言版中算术表达式求值演示-Arithmetic expression evaluation demo
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:5753
    • 提供者:陈平浩
  1. Microsoft

    0下载:
  2. 带括号的算术表达式求值,可以计算基本的加减乘除-Parenthesized arithmetic expression evaluation, basic addition and subtraction, multiplication and division can be calculated
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-15
    • 文件大小:8503
    • 提供者:王志杰
  1. biaodashiyunsuan

    0下载:
  2. 以字符序列的形式从键盘输入语法正确的,不含变量的整型表达式。利用算符优先关系,实现对算术四则混合运算表达式的求值,并在求值中运算符栈、运算数栈、输入字符和主要操作的变化过程-In the form of a sequence of characters from the keyboard input syntax is correct, excluding the variable of integer expressions. Change operator precedence relati
  3. 所属分类:Other systems

    • 发布日期:2017-04-01
    • 文件大小:2365
    • 提供者:yxt
  1. arithmetic-expression-evaluation

    0下载:
  2. 数据结构实验 算术表达式问题 输出前缀表达式和后缀表达式,以及求值运算-The output prefix expression data structure experiments arithmetic expressions and suffix expressions, as well as the evaluation value calculation
  3. 所属分类:Other systems

    • 发布日期:2017-11-23
    • 文件大小:56352
    • 提供者:刘阳
  1. cal

    0下载:
  2. 一个简单的算术表达式求值的小程序,含有自动查错功能-A simple arithmetic expression evaluation program, containing automatic error checking
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-04
    • 文件大小:4536
    • 提供者:hhr
  1. ValueExpression

    0下载:
  2. 利用栈实现的算术表达式求值,支持多对括号的出现,可以只能解析表达式-Use stack to achieve the arithmetic expression evaluates to support the emergence of multiple pairs of parentheses, analytical expressions can only
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-24
    • 文件大小:2731
    • 提供者:冯小珂
  1. ExpEvaluation

    0下载:
  2. 表达式求值算法:表达式求值是高级语言编译中的一个基本问题,是栈的典型应用实例。 任何一个表达式都是由运算数(operand)、运算符(operator)和界限符(delimiter)组成的。运算数既可以是常数,也可以是被说明为变量或常量的标识符;运算符可以分为算术运算符、关系运算符和逻辑运算符三类;基本界限符有左右括号和表达式结束符等。 由于某些运算符可能具有比别的运算符更高的优先级,因此表达式求值不可能严格地从左到右进行。为了正确地处理表达式,使用栈来实现正确的指令序列是一个重要的技术
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:692
    • 提供者:cindy
  1. Expression

    0下载:
  2. 算术表达式分析计算处理程序. 同输入123*(12+6)来求表达式的值-Arithmetic expression analysis and calculation process. With input 123* (12+6) to evaluate the expression
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-25
    • 文件大小:20402
    • 提供者:pick$
  1. TestExpr

    0下载:
  2. 四则混合运算表达式求值: 当用户输入一个合法的算术表达式后,能够返回正确的结果。 能够计算的运算符包括:加、减、乘、除、括号; 能够计算的操作数要求在实数范围内;-The four mixed computing expression evaluation: When the user enters a valid arithmetic expression, they can return the correct results. Operators can be calc
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-28
    • 文件大小:438549
    • 提供者:谭毅
  1. Calculator

    0下载:
  2. 带括号的算术表达式求值 1.采用算符优先数算法,能正确求值表达式 2.栈的应用 -Bracketed arithmetic expression uation 1. Using operators priority number algorithm, able to uate the expression is correct 2. application stack
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-28
    • 文件大小:13822
    • 提供者:xinwuya
  1. shangji2

    0下载:
  2. 数据结构上机题。题目是 实现算术表达式求值程序(栈的运用)。 设操作数:0,1,2,……,8,9(可扩充); 运算符:+,—,*,/,(,),#(#号为结束)。 -Data structure machine problems. Topic is to achieve an arithmetic expression uator (stack use). Number of set operations: 0,1,2, ......, 8,9 (expandable) ope
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:2436
    • 提供者:左晨
  1. 15982993

    0下载:
  2. 简单的表达式求值算法,能够进行一般算术运算()
  3. 所属分类:其他

    • 发布日期:2018-04-29
    • 文件大小:171008
    • 提供者:Bellg
搜珍网 www.dssz.com