CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - operator priority stack

搜索资源列表

  1. 简单的表达式求值

    0下载:
  2. 语法分析正确后就可以求值了,求值时用到一个操作数堆栈和操作符堆栈,以及一个算符优先表(存储了运算符之间的优先关系),具体细节可以阅读源码。-syntax analysis is correct after it evaluates the value used for a number of operations and the operator stacks stack, and an operator priority list (stored Operators relations bet
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1.88mb
    • 提供者:李平
  1. ExpressAnalysis

    0下载:
  2. 表达式分析, 支持算术运算,括号,关系运算,逻辑运算,字符串的like运算等。采用了有限自动机做词法分析, 语法分析用算符优先分析方法,正负号算符使文法不是OPG,因此这里作了特殊处理。分析的结果是逆波兰式, 存在一个链表中。在逆波兰式的基础上,用一个栈来进行求值。在vc++6.0下试验通过。 如有问题,可以mail: zch888email@163.com 我将尽快回复你。-expression analysis, supports arithmetic operations, bra
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:22.27kb
    • 提供者:大山
  1. 编译原理代码

    0下载:
  2. 编译原理中算符优先表的生成,其中包含了每步骤的显示,进栈和出栈的过程都能完整的显示出来,仅供大家学习借鉴-compiler Principle operator of the priority list generation, which contains every step, into stacks and stack up the integrity of the process can show up only to learn from you
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:2.93kb
    • 提供者:dzg
  1. suanfu

    0下载:
  2. 用算符优先文法制作的算符优先分析器,实现了FIRSTVT跟LASTVT的输出跟优先表的输出以及栈的输出以及到文件的输出。-priority grammar operator with the operator priority to the production analyzer, achieved with LASTVT FIRSTVT output with the output of the priority list and stack output and the output of
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:10.6kb
    • 提供者:姜鹏
  1. stack.rar

    0下载:
  2. 用栈实现算式的运算,通过把操作符压栈和操作符的优先级进行运算。,Formula used to achieve the computing stack, push through the operator and operator to operator priority.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:991.23kb
    • 提供者:xdb
  1. suanshubiaodashiqiuzhi.rar

    0下载:
  2. 1、 以字符序列的形式从终端输入语法正确的、不含变量的证书表达式。利用一定的运算符优先关系,实现对算术四则混合运算表达式的求值,并且在求值中运算符栈、运算数栈、输入字符和主要操作的的变化过程。 2、 设置运算符栈和运算数栈辅助分析算符的优先级。 3、 在读入表达式的字符序列的同时,完成运算符和运算数的识别处理,以及相应的运算。 4、 在识别处运算符的同时,要将其字符序列形式转换成整数形式。 5、 在程序的适当的位置输入运算符栈、运算数栈、输入字符和主要操作内容。 ,1, to form
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-02
    • 文件大小:1.25kb
    • 提供者:李涛
  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-09
    • 文件大小:253.55kb
    • 提供者:Leon
  1. main

    0下载:
  2. 表达式运算(计算器),用栈的方法求表达式的值,包括括号及优先级-Expression operator (Calculator), using the stack method of expression for the value, including the brackets and Priority
  3. 所属分类:Algorithm

    • 发布日期:2017-04-08
    • 文件大小:1.6kb
    • 提供者:苏若水
  1. suanfuyouxianfenxiqi

    2下载:
  2. 【目的】 设计一个算符优先分析器,理解优先分析方法的原理。 【要求】 使用算符优先分析算法分析下面的文法: E’ → #E# E → E+T | T T → T*F | F F → P^F | P P → (E) | i 其中i可以看作是一个终结符,无需作词法分析。具体要求如下: 1. 如果输入符号串为正确句子,显示分析步骤,包括分析栈中的内容、优先关系、输入符号串的变化情况; 2. 如果输入符号串不是正确
  3. 所属分类:Compiler program

    • 发布日期:2015-09-21
    • 文件大小:2.85kb
    • 提供者:王东旭
  1. suanshubiaodashi

    0下载:
  2. 这是我的数据结构课程设计,1. 初始化两个空栈,一个是操作符栈,一个是操作数栈。2. 如果字符是操作数,将它压入操作数栈。 如果字符是个操作符,则和运算符栈顶的运算符比较优先权后作相应操作,优先技小泽压入栈,大于则将栈顶的运算符出栈,并将运算数栈顶的两个数出栈进行运算。等于,则弹出操作符。-This is my data structure of the curriculum design, 1. Initialize two empty stacks, one stack operator,
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:10.82kb
    • 提供者:往往
  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-06
    • 文件大小:1.11kb
    • 提供者:王超
  1. 20080405_9a428821385c382c2511qbZ6dSFYrYC3

    0下载:
  2. 这是一款非常实用的计算器,我认为其实用程度远远胜过Windows系统提供的计算器.主要特色是支持多项式运算,即可以一次输入整个多项式,并能够识别运算的优先级(利用堆栈实现)-This is a very practical calculators, in fact, in my opinion much better than using Windows system calculator. Main features are support for polynomial computing,
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-29
    • 文件大小:67.49kb
    • 提供者:陈 波
  1. JiSuanQi

    0下载:
  2. 算术运算的优先级运算,充分利用堆栈原理,进行优先级运算。-The priority of arithmetic operations, the principle of full use of the stack, the operator priority.
  3. 所属分类:Other systems

    • 发布日期:2017-04-26
    • 文件大小:10.1kb
    • 提供者:王政博
  1. Editor_Soft

    0下载:
  2. .采用算符优先数算法,能正确求值表达式 2.熟练掌握栈的应用 3.熟练掌握计算机系统的基本操作方法,了解如何编辑、编译、链接和运行一个C++程序 -. Using operator priority number algorithm, able to correctly evaluated expression 2. Familiar with the application of the stack 3. Familiar with the basic operation
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:470.54kb
    • 提供者:liujianye
  1. calculator

    1下载:
  2. 用C++编写带括号的算术表达式求值,利用堆栈实现,采用算符优先数算法。-Written with C++ arithmetic expression in parentheses is evaluated using the stack implementation, the use of operator priority number algorithm.
  3. 所属分类:Data structs

    • 发布日期:2015-12-15
    • 文件大小:430kb
    • 提供者:JJWM
  1. Evaluate

    0下载:
  2. 用栈实现表达式求解,包括栈的基本操作及运算符优先级比较,运算等。-Stack to achieve the expression evaluator, including the basic operation of the stack and the operator priority computing.
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:3.06kb
    • 提供者:mengzhen
  1. Test

    0下载:
  2. 此代码实现了算符优先文法分析器,实现对整数加减乘除运算表达式的分析和处理。 1.扫描程序,将任何一种整数运算表达式(无变量,操作数为正整数,允许加减乘除四种运算,允许使用括号和多层括号)识别为单词,并能发现单词的拼写错误 2.自底向上分析程序,在栈上实现对单词token串的自底向上分析 3. 根据算符优先文法的分析步骤,展示分析栈、token串的状态变化、相关量的优先级比较(算符优先分析表)结果输出 、判断当前是否进行规约或移进操作、(若须规约)显示当前应规约的串 4.展示语法树
  3. 所属分类:Java Develop

    • 发布日期:2017-04-26
    • 文件大小:12.85kb
    • 提供者:miao
  1. postfix-notation

    0下载:
  2. 1、给出文法如下: G[E] E->T|E+T T->F|T*F F->i(E) 对应的转化为逆波兰式的语义动作如下: E-> E(1)op E(2) {E.CODE:= E(1).CODE||E(2).CODE||op} E->(E(1)) { E.CODE := E(1).CODE} E->id { E.CODE := id} 2、利用实验5中的算符优先分析算法,结合上面给出的语义动作实现逆波兰式的构造
  3. 所属分类:Compiler program

    • 发布日期:2017-04-12
    • 文件大小:1.3kb
    • 提供者:忆昔
  1. Arithmetic-expression-evaluation

    1下载:
  2. [问题描述] 表达式计算是实现程序设计语言的基本问题之一。也是栈的应用的一个典型例子。设计一个程序,演示用算符优先法或转换成后缀表达式方法对算术表达式进行求值的过程。 [基本要求] 以字符序列的形式从终端输入语法正确的、不含变量的整数表达式。利用中缀表达式向后缀表达式转换的方法,实现对算术四则混合运算表达式的求值。-Expression computing is to achieve one of the basic problems of program design langu
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1.55kb
    • 提供者:Vicki Cui
  1. zhanwww

    0下载:
  2. 表达式求值运算是实现程序设计语言的基本问题之一,也是栈应用的一个典型例子。设计并演示用算符优先级对算术表达式的求解过程-Expression uations are one of the basic problems in implementing programming languages and are a typical example of stack applications. Design and demonstrate the process of solving the ari
  3. 所属分类:Data structs

    • 发布日期:2017-12-16
    • 文件大小:14kb
    • 提供者:魏倩
« 12 »
搜珍网 www.dssz.com