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

搜索资源列表

  1. data-structure

    0下载:
  2. 在学习数据结构时完成的几个小的编程练习,大家可以参考参考,分别是中缀转后缀表达式,约瑟夫问题,一元多项式相乘-Upon completion of the study data structure of several small programming exercises, you can refer to the reference, which are in turn postfix infix expression, Joseph problems, one yuan polynomia
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:2410
    • 提供者:julie
  1. android

    0下载:
  2. Android 计算器源码之逆波兰算法 基于Android 4.2.2 做的一个简易计算器,采用逆波兰算法,将中缀表达式转换为后缀表达式,可解析带括号的四则运算-Based on the Android 4.2.2 do a simple calculator, using the algorithm of reverse polish, convert infix expressions to postfix expression, can parse arithmetic with pa
  3. 所属分类:android

    • 发布日期:2017-05-13
    • 文件大小:2686354
    • 提供者:小王子Galaxy
  1. sizeyunsuan

    0下载:
  2. 四则运算表达式求值,将四则运算表达式用中缀表达式,然后转换为后缀表达式,并计算结果。-Four arithmetic expression uation, the four arithmetic expressions used in infix expression, and then converted to a postfix expression, and calculate the results.
  3. 所属分类:assembly language

    • 发布日期:2017-04-14
    • 文件大小:3204
    • 提供者:juwairen
  1. Calculator

    0下载:
  2. 一个简单的计算复杂表达式的值,利用栈,将中缀表达式转化为后缀表达式-A simple calculation of the value of complex expressions, the use of the stack, the infix expressions into postfix notation
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:3477
    • 提供者:从陆文
  1. nifix-expression

    0下载:
  2. 将中缀表达式转换成后缀表达式,开发环境为Visual C-Convert infix expressions into postfix expression, in Visual C++
  3. 所属分类:Console

    • 发布日期:2017-04-13
    • 文件大小:2310
    • 提供者:keii
  1. Simple-calculator

    0下载:
  2. 通过算法把中缀表达式转化为后缀表达式并计算出所需要的公式结果-The algorithm takes the infix expression into postfix expression and calculate the required formula results
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:1278
    • 提供者:冯紫鑫
  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
    • 提供者:忆昔
  1. expression-evaluate

    0下载:
  2. 将中缀表达式转换成后缀表达式,再将后缀表达式求值-Convert infix expression into postfix notation, then postfix expression uation
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-09
    • 文件大小:1756628
    • 提供者:黄安
  1. biaodashiqiuzhi

    0下载:
  2. 自己编写的堆栈,单链表实现,并用于表达式求值(中缀转后缀、后缀求值)-I have written a stack, single linked list implementation, and for expression uation (infix turn suffix, suffix uation)
  3. 所属分类:Data structs

    • 发布日期:2017-05-09
    • 文件大小:1937014
    • 提供者:Yin
  1. infix_to_po

    0下载:
  2. 后缀转中缀的表达式,一样可以用的,需要的可以拿去-Suffix turn infix expression can be used as needed may take
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-30
    • 文件大小:27557
    • 提供者:zzx
  1. sicily-online-judge

    0下载:
  2. 包括 sicily online judge 1149等部分题目,线性表,最小生成树,中缀转后缀并计算后缀表达式等。 -including sicily online judge/list/BST/postfix and infix
  3. 所属分类:Other systems

    • 发布日期:2017-05-04
    • 文件大小:5510
    • 提供者:啊哈哈
  1. operation

    0下载:
  2. 用栈实现表达式求值,将中缀表达式转换成后缀表达式-Use the stack to uate the expression and convert the infix expression into a suffix expression
  3. 所属分类:Data structs

    • 发布日期:2017-05-05
    • 文件大小:402016
    • 提供者:任何
  1. write_expjession

    0下载:
  2. 实现中缀变后缀表达式求值,用VC编写的,大家可以来看看,发表下意见也行,-Implement infix suffix expression uation, using VC to write, you can see, the opinion,
  3. 所属分类:File Operate

    • 发布日期:2017-12-12
    • 文件大小:99997
    • 提供者:multiplt
  1. InFix2PostFixorPreFix

    0下载:
  2. 要求:构建一个表达式树,当输入中缀表达式时,输出并打印其前缀及后缀表达式 实现:构造一个标准的表达式树的类,它涵盖先序、中序、后序遍历操作,通过不同顺序的打印操作来实现转换操作;相对于使用栈来进行转换,免去了中缀转成前缀时进行的逆序操作(Requirements: to construct an expression tree, when the input infix expression, output and print the prefix and suffix expression
  3. 所属分类:数据结构

    • 发布日期:2017-12-20
    • 文件大小:2048
    • 提供者:舟齐
« 1 2 ... 9 10 11 12 13 14»
搜珍网 www.dssz.com