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

    0下载:
  2. 利用堆栈实现算术表达式的功能,当你输入一个式子时,他自动检验符号的优先级+,-,*,/,(,)-The use of the stack to achieve the function of arithmetic expressions
  3. 所属分类:Other systems

    • 发布日期:2017-04-01
    • 文件大小:1859
    • 提供者:liuyu
  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. 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. 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. 3-3

    0下载:
  2. 用栈设计算法判断一个算术表达式的圆括号是否配对。-The stack design algorithm to determine an arithmetic expression parentheses paired.
  3. 所属分类:Other systems

    • 发布日期:2017-12-02
    • 文件大小:827
    • 提供者:wangyuxi
  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. main

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

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

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

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

    0下载:
  2. 栈的实现及应用 栈是一种常用的线性表,在操作系统中被大量使用,比如计算各种表达式。设计程序完成一个24点游戏,要求用户将四个随机产生的十以内的整数进行加减乘除(允许使用括号,每个数只能用一次)求得二十四。(注:可以不判断录入的表达式是不是只使用了给定的四个数或者使用了多次数) 功能要求: (1)随机产生四个数(使用randomize和random函数); (2)要求用户录入表达式,只能使用括号,加,减,乘和除; (3)将中序算术表达式变成逆波兰式(也就是后序算术表达式);
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:1271
    • 提供者:郑振曦
  1. Calculate

    0下载:
  2. (1) 从键盘或文件读入一个合法的算术表达式,输出正确的结果。 (2) 显示输入序列和栈的变化过程。 (3) 考虑算法的健壮性,当表达式错误时,要给出错误原因的提示。-(1) the keyboard or the file is read into a legitimate arithmetic expressions, output the correct result. (2) changes in sequence and display input process sta
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-28
    • 文件大小:214296
    • 提供者:真真
  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. Convert-infix

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

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

    0下载:
  2. 数据结构上机作业,掌握栈的定义及实现;掌握利用栈求解算术表达式的方法(Data structure on machine operation, grasp the definition and implementation of stack; master stack to solve arithmetic expression.)
  3. 所属分类:其他

    • 发布日期:2018-05-01
    • 文件大小:1482752
    • 提供者:cc4
搜珍网 www.dssz.com