CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - 栈 算术表达式

搜索资源列表

  1. suanshubiaodashi

    0下载:
  2. 关于栈中算术表达式求法 别人写的,觉得很好 十分敬佩-on the stack arithmetic expression Solution written by someone else, a very good feel admiration
  3. 所属分类:STL

    • 发布日期:2008-10-13
    • 文件大小:2035
    • 提供者:tt
  1. biaodashqiuzhi

    0下载:
  2. 算术表达式求值的程序,用栈实现的,可以进行加、减、乘、除、乘方、求余计算,支持小数和括号 (数据结构作业)-arithmetic expression evaluates the procedures used stack to achieve, and can be, plus or minus, multiplication, addition, the involution, for I, support minority and brackets (data structure oper
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:1406
    • 提供者:朱建鲁
  1. expressionvalue

    0下载:
  2. 属于利用C++开发的数据结构代码,利用栈结构实现了算术表达式的求值。-development is the use of C code structure of the data, using stack structure for arithmetic expression value.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:273403
    • 提供者:张婧姝
  1. Precede

    0下载:
  2. 用算符优先法对算术表达式求值的过程。要求以字符序列的形式从终端输入语法正确的、不含变量的整数表达式。实现对算术四则混合运算表达式的求值,并在求值中运算符栈、运算数栈、输入字符和主要操作的变化过程。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1731
    • 提供者:叶子
  1. biaodashiqiuzhi

    0下载:
  2. 题目:设计一个题目,演示用算符优先法对算术表达式求值的过程。 概要设计 1、顺序扫描中缀算术表达式,当读到数字时直接将其送至输出队列中; 2、当读到运算符时,将栈中所有优先级高于或等于该运算符弹出,送至输出队列中,再将当前运算符入栈; 3、当读入左括号时,即入栈; 4、当读到右括号时,将靠近栈顶的第一个左括号上面的运算符全部一次弹出,送至输出队列中,再删除栈中的左括号。 5、使用VS栈来存储读入的操作和运算结果,然后进行数字字符到数值的转换。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:6345
    • 提供者:布瓜
  1. FomulaStack

    0下载:
  2. 利用栈求解算术表达式的值,程序分为两种表达式,中缀式与后缀式,分别得用栈先入后出的特性,以及运算符的优先级比较,进行求解-use arithmetic to solve the value of the expression, procedures are divided into two expressions, and the sergeant-type suffix. Stack were starting after the first-in-the characteristics, a
  3. 所属分类:Data structs

    • 发布日期:2017-11-08
    • 文件大小:259633
    • 提供者:Leon
  1. stack

    0下载:
  2. 用栈实现算术表达式 一个小小的科学计算器,根据用户输入的表达式计算出结果-Arithmetic expressions using stacks to achieve a small scientific calculator, in accordance with user input to calculate the results of the expression
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:1376
    • 提供者:jwjshitiancai
  1. value

    0下载:
  2. 演示用算符优先法对中序算术表达式求值的过程。 程序执行的命令包括: (1)构造两个空栈,数栈和运算符栈;(2)输入一个中序算术表达式,表达式中数字进入数栈,运算符进入运算符栈;(3)将从键盘上输入的运算符与运算符栈中的运算符进行优先级比较;(4)将运算结果再放入数栈中;(5)结束。 -Demonstration by operators in order of priority on the arithmetic expression evaluation process. Pro
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1771
    • 提供者:sanghy
  1. ArithmeticExpressionEvaluation

    0下载:
  2. 算术表达式求值 从键盘读入一个合法的算术表达式,输出正确的结果,并显示输入序列和栈的变化过程。-Arithmetic Expression Evaluation Reading from the keyboard into a legitimate expression of the arithmetic, the output correct results, and display the input sequence and stack the process of change.
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:5108
    • 提供者:杨猛
  1. Stack

    0下载:
  2. 实现对输入的算术表达式进行计算,用栈完成此项功能-Calculate the Expression using Stack
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:68666
    • 提供者:
  1. expressions

    0下载:
  2. 有关表达式的栈的应用 内容有:表达式括号匹配 计算后缀表达式的值 计算算术表达式的值 中缀表达式转后缀表达式-Expression of the application stack are as follows: the expression in brackets to match the calculated value of the suffix arithmetic expression expression is made up of expressions of
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:3205
    • 提供者:陈子杭
  1. ApplicationStack

    0下载:
  2. 1.进一步掌握栈的基本操作的实现。 2.掌握栈在算术表达式的计算方面的应用。 -1. Further understand the basic operation of the stack implementation. 2. Control stack in the calculation of arithmetic expression applications.
  3. 所属分类:matlab

    • 发布日期:2017-04-16
    • 文件大小:252485
    • 提供者:timmy
  1. sshuqiuzhi

    0下载:
  2. 算术表达式求值:置操作数栈为空栈,表达式起始以#为栈底元素,依次读入每个字符,若是操作符则进入OPND栈,运算符则进入OPTR栈的栈定运算符比较优先权后作相应操作,直到OPTR栈顶元素和当前读入字符为-Arithmetic expression evaluation: set stack operand stack is empty, the expression starting with# as the bottom of the stack element, followed by re
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:1645
    • 提供者:LT
  1. main

    0下载:
  2. 通过栈和队列,求算术表达式的值,能够更深入的理解栈的先进后出和队列的先进先出-Through the stack and queue, find the value of arithmetic expressions, to more advanced understanding of the stack and queue in the FIFO after the
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:1161
    • 提供者:子童
  1. 16008408_E1

    0下载:
  2. 1、实现算术表达式的求值运算,程序通过键盘输入一个表达式,通过运算得到表达式的值,并在显示器上输出完整的表达式及其值; 2、程序实现时,采用栈数据结构 3、表达式以字符串的形式输入; 4、表达式中包括的基本运算符有加、减、乘、除(分别用+、-、*、、表示),表达式中包括括号的处理,括号可以嵌套;表达式中的数字可以是整数,也可以是小数-1, and the evaluation of arithmetic operations, the program through keyboard
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:3346
    • 提供者:张笑薇
  1. Solving-expressions

    0下载:
  2. 简单算术表达式的求解,利用栈的后进先出的特点,加入了对算式合法性的判断-Solving simple arithmetic expression, the use of LIFO stack characteristics, added to the formula to determine the legality of
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:2066
    • 提供者:ryan
  1. suanshubiaoda

    0下载:
  2. 用栈的原理实现的算术表达式求解,可输入算数表达式-suan shu biao da shi
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:9357
    • 提供者:liwenxue
  1. use-stack

    1下载:
  2. 数据结构(C语言)版课程设计,利用栈求表达式的值: 3. 利用栈求表达式的值(必做) 任务:建立试题库文件,随机产生n个题目;题目涉及加减乘除,带括号的整数混合运算;随时可以退出;保留历史分数,能回顾历史,给出与历史分数比较后的评价。(假设这是一个可供小学生练习算术运算的小系统) 要求:根据以上任务说明,设计程序完成功能。 -hello welcome
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:31397
    • 提供者:颜家远
  1. 1

    0下载:
  2. 1)使用先序遍历序列构造算法,使用二叉链表,表示算术表达式2*3+6/3的标识符树; 2)求标识符树的先序、中序、后序序列,各存入数组中并显示结果; 3) 求树中叶子结点的个数 附加:3)使用后序序列求表达式的值(使用栈实现); -1) Use a preorder traversal sequence construction algorithm, using the linked list of binary, indicating that the arithmetic
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:1102
    • 提供者:zhongren
  1. 算术表达式求值演示

    0下载:
  2. 用栈实现算术表达式求值,另有MFC制作的图形界面(Arithmetic expression evaluation by stack, and graphical interface made by MFC)
  3. 所属分类:数据结构

« 12 »
搜珍网 www.dssz.com