CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 算术表达式

搜索资源列表

  1. Compiler

    0下载:
  2. 算术表达式的词法分析和语法分析,有需要的用-Arithmetic expressions of lexical analysis and syntax analysis, there is a need to use
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-29
    • 文件大小:16104
    • 提供者:jimmy
  1. 4

    0下载:
  2. 四则运算 将算术表达式转换成后缀表达式后计算-#include<stdio.h> #include <stdlib.h>
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:1144
    • 提供者:
  1. bianyiyuanli

    0下载:
  2. 词法扫描并生成中间表达式,理解中间代码,将非后缀式用来表示的算术表达式转换为用逆波兰式来表示的算术表达式 -Lexical scanning and generate intermediate expression, understanding of intermediate code will be used to indicate the non-suffix type is converted to the arithmetic expressions using reverse P
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-28
    • 文件大小:23203
    • 提供者:川原
  1. Stack

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

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

    0下载:
  2. 本程序是算术表达式计算程序,通过输入表达式达到计算的目的(编译原理中的词法分析、算符优先分析,可代替目前普遍使用的计算器)。-This procedure is the arithmetic expression program, by entering the expression to achieve the purposes of the calculation (the compiler of the principle of lexical analysis, operator pri
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:303966
    • 提供者:caipan
  1. suanfa

    0下载:
  2. 问题描述:假设一个算术表达式中可包含三种括号:圆括号,方括号和花括号且这三种括号可按任意次序嵌套使用。试利用栈的运算,编写判别给定表达式中所含括号是否正确配对出现的算法。-Problem Descr iption: Suppose an arithmetic expression can contain three types of brackets: parentheses, square brackets and curly braces and brackets can be any of
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-28
    • 文件大小:1109
    • 提供者:afeng
  1. 1

    0下载:
  2. 、完成以下描述算术表达式的算符优先文法的算符优先分析过程。 G[E]:E→E+T∣E-T∣T T→T*F∣T/F∣F F→(E)∣i -failed to translate
  3. 所属分类:Editor

    • 发布日期:2017-04-14
    • 文件大小:4803
    • 提供者:不懂
  1. LL(1)

    0下载:
  2. 采用编译原理的LL(1)文法判断一个算术表达式是否正确如 113+23*3.4*(32.4-5)/23并且给出详细的栈过程显示-The principle used to compile the LL (1) grammar to determine whether or not a correct arithmetic expression such as 113+23* 3.4* (32.4-5)/23 and gives a detailed process shows that the
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:1266
    • 提供者:zz
  1. 3377823

    0下载:
  2. 编译程序的分析与设计和算术表达式的扩充,经过编译运行得到验证结果-Compiler analysis and design, and arithmetic expansion of expression, have been compiled to verify the results of running
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:159878
    • 提供者:王轩
  1. yyfx

    0下载:
  2. 实验目的 通过上机实习,加深对语法制导翻译原理的理解,掌握将语法分析所识别的语法成分变换为中间代码的语义翻译方法. 实验要求 采用递归下降语法制导翻译法,对算术表达式、赋值语句进行语义分析并生成四元式序列。 实验的输入和输出 输入是语法分析提供的正确的单词串,输出为三地址指令形式的四元式序列。 例如:对于语句串 begin a:=2+3*4 x:=(a+b)/c end# 输出的三地址指令如下: (1) t1=3*4 (2) t2=2+t1 (3
  3. 所属分类:Other systems

    • 发布日期:2017-04-04
    • 文件大小:179904
    • 提供者:zhangjuan
  1. lab_111

    0下载:
  2. 一个算术表达式,由常量、变量、运算符和括号组成-An arithmetic expression, by the constant, variable, composed of operators and brackets
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:869634
    • 提供者:陈诚
  1. lab_111

    0下载:
  2. 一个算术表达式,由常量、变量、运算符和括号组成 规定操作数只能为正整数,操作符为+、-、*、/,用#表示结束。-An arithmetic expression, by the constant, variable, composed of operators and parentheses provides operand can only be a positive integer, for the operator said+,-,*,/, end with#.
  3. 所属分类:Data structs

    • 发布日期:2017-05-06
    • 文件大小:1063669
    • 提供者:陈诚
  1. EVA

    0下载:
  2. 算符优先算法 求算术表达式的值 数据结构-priority of operator
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:3115
    • 提供者:ck
  1. duizhan

    0下载:
  2. 假设一个算术表达式中可以包含三种括号:()[]{},且这三种括号可以按任意次序嵌套使用(如:...[...{...}...[...]...]...(...))。编写判别给定表达式中所含括号是否正确配对出现的算法,已知表达式已存入数据元素为字符的顺序表中。
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:661
    • 提供者:tooby
  1. LL(1)

    1下载:
  2. LL(1)语法分析1、实现LL(1)分析中控制程序(表驱动程序); 2、完成以下描述算术表达式的LL(1)文法的LL(1)分析程序。 G[E]: E→TE′ E′→ATE′|ε T→FT′ T′→MFT′|ε F→ (E)|i A→+|- M→*|/-LL (1) syntax analysis 1, the realization of LL (1) Analysis of control procedures (table-driven procedure
  3. 所属分类:Data structs

    • 发布日期:2017-03-25
    • 文件大小:639946
    • 提供者:张帅
  1. Principles-of-curriculum-design

    1下载:
  2. 编译原理课程设计总结报告 1.设计题目及相关内容 本课程设计完成的是递归下降分析法。对算术表达式和赋值语句进行语义分析并生成四元式序列。其中,本设计用C语言对简单的pascal语言子集编制一个编译程序。语义分析输入的是语法分析后提供的单词串,而语法分析的输入是词法分析的程序所提供的单词序列。要求把语法分析程序和词法分析都作为子程序调用,其中输入字符串要用文件操作。 2.运行环境(软、硬件环境) 硬件环境:方正电脑,P4CPU,512M内存 软件环境:Visualc+
  3. 所属分类:Windows编程

    • 发布日期:2016-06-30
    • 文件大小:2659347
    • 提供者:爱爱爱
  1. 2_parser

    0下载:
  2. C编写的一个语法分析器,输入一个算术表达式可分析出其是否为一个正确的表达,使用+,-,*,/四个表达式。-C prepared by a parser, type an arithmetic expression can be analyzed for their expression of a correct use of the four expressions+,-,*,/.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-05
    • 文件大小:10342
    • 提供者:李子超
  1. Calculate

    0下载:
  2. C++用栈和队列实现简单算术表达式的计算-C++ using stack and queue simple arithmetic calculation expressions
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:1736
    • 提供者:谈钒
  1. Suffix

    0下载:
  2. 数据结构中的后缀算术表达式计算。方便学习数据结构的人。-The suffix data structure calculation of the arithmetic expression. Data structure to facilitate learning of the people.
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:1147
    • 提供者:郑龙
  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-14
    • 文件大小:3205
    • 提供者:陈子杭
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 24 »
搜珍网 www.dssz.com