CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 搜索资源 - postfix

搜索资源列表

  1. Postfix

    2下载:
  2. 中山大学编译原理实验三 后缀表达式Postfix-Postfix
  3. 所属分类:Compiler program

    • 发布日期:2016-02-07
    • 文件大小:27655
    • 提供者:Zeng
  1. EvaluatePostfixExpression

    0下载:
  2. Evaluate Postfix expression. Data Structure. C code
  3. 所属分类:Compiler program

    • 发布日期:2017-04-10
    • 文件大小:1081
    • 提供者:Abdullah
  1. fuzhiyuju

    0下载:
  2. 赋值语句的翻译:利用算符优先法将一个赋值语句翻译成后缀表达式-Assignment statement translation: Using the priority France will be one operator assignment statement translated into postfix expression
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:1832
    • 提供者:orange
  1. Calculator

    1下载:
  2. c++语言编写的计算器程序,可以实现加减乘除,不过不支持双位数,使用堆栈编写,含有中缀表达式到后缀表达式的转换。-c++ language calculator program, Math can be achieved, but does not support double-digit, use the stack preparation, with infix expression to postfix expression converter.
  3. 所属分类:source in ebook

    • 发布日期:2017-03-31
    • 文件大小:269870
    • 提供者:王文
  1. comptool

    0下载:
  2. Postfix evaluation demo using basic Compiler Tools: Symbol Table, Lexical Analysis-Postfix evaluation demo using basic Compiler Tools: Symbol Table, Lexical Analysis...
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:2702
    • 提供者:johntux
  1. postfix

    0下载:
  2. This is a function done in c++, an compile with devc++. Where it can compute POSTFIX ecuation, giving the result of it ecuation. ex. 23+4- = 1
  3. 所属分类:Compiler program

    • 发布日期:2017-04-10
    • 文件大小:1004
    • 提供者:enroyate
  1. huizhuishi

    0下载:
  2. 中缀式转换成后缀式 基于语法制导翻译的表达式转换编译器-Postfix infix conversion into a translation type expression based Syntax compiler transformation
  3. 所属分类:source in ebook

    • 发布日期:2017-03-24
    • 文件大小:2880
    • 提供者:文迪
  1. 4

    0下载:
  2. It is based on infix to postfix evaluation.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-11
    • 文件大小:1096
    • 提供者:mohit
  1. zhong_zhuan_hou_calc

    0下载:
  2. 输入中缀表达式,转换为后缀表达式,并计算出结果-Input infix expression into postfix expression, and calculate the results
  3. 所属分类:MPI

    • 发布日期:2017-03-30
    • 文件大小:8752
    • 提供者:莫斌峰
  1. ex1

    0下载:
  2. 《编译原理》表达式翻译器 构造一个中缀表达式到后缀表达式的翻译器,初步了解递归下降语法分析原理及语法制导翻译的过程。-Compiler theory expression translator construct an infix expression to postfix expression translator, a preliminary understanding of recursive descent parsing principle and Syntax translation
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:875
    • 提供者:陈依云
  1. 1

    2下载:
  2. 编译原理实验 表达式翻译器:一个中缀表达式到后缀表达式的翻译器 表达式文法及其翻译模式定义如下: expr  expr + term {print(‘+’)} | expr - term {print(‘-’)}| term term  term * factor {print(‘*’)} | term / factor {print(‘/’)} | factor factor  ( expr ) | id {print(id.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:4924
    • 提供者:wuchiren
  1. code

    0下载:
  2. 简单的语句解析。将后缀表达式转换成自定义的汇编语言。-Simple statement is parsed. Postfix expression converted to a custom assembly language.
  3. 所属分类:assembly language

    • 发布日期:2017-04-02
    • 文件大小:1558
    • 提供者:王文武
  1. expression_value

    0下载:
  2. 将中缀表达式转化成后缀表达式并求值(数据结构与算法)-Infix expression into postfix expression evaluator (data structures and algorithms)
  3. 所属分类:source in ebook

    • 发布日期:2017-12-04
    • 文件大小:698758
    • 提供者:杨武
  1. pass_compiler

    0下载:
  2. 龙书《编译原理》中的一遍翻译器,能将表在达翻译成后缀表达式-Again translator Dragon Book " compiler theory, be able to table reached translated into postfix expression
  3. 所属分类:Compiler program

    • 发布日期:2017-12-01
    • 文件大小:27456
    • 提供者:Peter
  1. text2

    0下载:
  2. 实现了用树建立数值表达式,并求其值,随便输出它的广义表、前缀表达式和后缀表达式-To realize the tree is to develop a numerical expression, and for its value, literally output its generalized list, prefix and postfix expression expression
  3. 所属分类:Compiler program

    • 发布日期:2017-11-21
    • 文件大小:351460
    • 提供者:刘坤
  1. semantic-analysis

    0下载:
  2. 语义分析语法分析词法分析等等等等还有后缀表达式-Semantic analysis syntax analysis lexical analysis, and so on and so there is a postfix expression
  3. 所属分类:Compiler program

    • 发布日期:2017-11-15
    • 文件大小:185037
    • 提供者:robin
  1. expression-translator

    0下载:
  2. 构造一个中缀表达式到后缀表达式的翻译器 表达式文法及其翻译模式定义如下: expr + term {print(‘+’)} | expr - term {print(‘-’)} | term term * factor {print(‘*’)} | term / factor {print(‘/’)} | factor f-Construct an infix expression to postfix expression translator
  3. 所属分类:Compiler program

    • 发布日期:2017-11-07
    • 文件大小:31050
    • 提供者:胡淼
  1. Counter

    0下载:
  2. 采用后缀式实现计算器功能,能够识别括号和判断优先级-Achieved using postfix calculator function, able to identify and determine the priority of parentheses
  3. 所属分类:source in ebook

    • 发布日期:2017-04-04
    • 文件大小:10037
    • 提供者:许家文
  1. infix-to-postfix

    0下载:
  2. 中缀表达式转后缀表达式,只做了数字,没有考虑字母的情况-infix to postfix
  3. 所属分类:Compiler program

    • 发布日期:2017-04-10
    • 文件大小:1238
    • 提供者:梁炎
  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
    • 文件大小:1331
    • 提供者:忆昔
« 12 »
搜珍网 www.dssz.com