搜索资源列表

  1. 8

    0下载:
  2. 8、对中缀表达式(如(2+3.25)*4=)求组,读入表达式的各项滤去空格,直到读入"=",处理过程中若发生错误,则输出相应的错误信息,读入结束后,计算表达式中的各项,打印表达式的结果-8, the infix expression (such as (2+ 3.25)* 4 =) for group, read into the expression of the least squares spaces, until the rea
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-18
    • 文件大小:143360
    • 提供者:季永光
  1. nibolanshi

    0下载:
  2. 逆波兰式的算法实现,输入中缀表达式,输出相应的转化结果-Reverse Polish-style algorithm, input infix expression, the transformation of the corresponding output results
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:zhaowei
  1. zhongzhui

    0下载:
  2. 中缀表达式 实现简单,功能简单 界面美观-Infix expression to achieve a simple, functional interface simple and beautiful
  3. 所属分类:书籍源码

    • 发布日期:2024-05-18
    • 文件大小:273408
    • 提供者:谭远会
  1. expression

    0下载:
  2. 中缀表达式变后缀表达式,利用堆栈的原理实现中缀表达式到后缀表达式的转换-Infix expression suffix variable expression, using the principles of the realization of the stack infix expression to expression suffix conversion
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-18
    • 文件大小:43008
    • 提供者:weizhongyu
  1. Project1

    0下载:
  2. This project requires you to write a program that imitates a simple desk calculator. Your calculator must be able to accept an infix expression which at least includes (, ), +, -, *, /, %, and ^ (exponentiation operator,
  3. 所属分类:Windows编程

    • 发布日期:2024-05-18
    • 文件大小:39936
    • 提供者:云从龙
  1. 38

    0下载:
  2. 1.实验目的: 将简单中缀算术表达式变换成: (1)后缀形式 (2)生成书上描述的抽象堆栈机的代码 (3)对常量算术表达式,输出结果 -1. Experimental purposes: the simple arithmetic infix expressions transform into: (1) suffix form (2) to generate an abstract descr iption of
  3. 所属分类:Windows编程

    • 发布日期:2024-05-18
    • 文件大小:24576
    • 提供者:Yejianmei
  1. caculate

    0下载:
  2. 大二 数据结构 课程设计 很有用 很规范 计算表达式的值 问题描述:对于给定的一个表达式,表达式中可以包括常数、算术运行符和括号,编写程序计算表达式的值。可从键盘输入一个正确的中缀表达式,将中缀表达式转换为对应的后缀表达式,计算后缀表达式的值。-Sophomore data structures course design is very useful to standardize the calculation of the v
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-18
    • 文件大小:4096
    • 提供者:xiang
  1. main

    0下载:
  2. 本程序可以将一个标准的中綴表达式转化一后缀表达式-This procedure can be a standard expression of transforming infix suffix 1 expression
  3. 所属分类:Windows编程

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:文龙武
  1. Untitled1

    0下载:
  2. 将中缀表达式转化为后缀表达式并求值,输出后缀表达式及值-Infix expression would be translated into expressions and suffix for the value of expression and the value of output suffix
  3. 所属分类:Windows编程

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:lxt
  1. biaodashiqiuzhi

    0下载:
  2. 实现了表达式的求值。当你输入一般的表达式,程序会实现了转化为前缀表达式,中缀表达式以及后缀表达式,并分别计算出结果。-Achieved expression is evaluated. When you enter a general expression, the program will be realized into a prefix expression infix expression as well as the suff
  3. 所属分类:其他小程序

    • 发布日期:2024-05-18
    • 文件大小:764928
    • 提供者:harry
  1. exp1

    0下载:
  2. 编译原理实验将简单中缀算术表达式变换成后缀形式 -Principle experiment will be to compile a simple arithmetic infix expressions transform into the form of the suffix
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-18
    • 文件大小:20480
    • 提供者:韩静书
  1. 03

    0下载:
  2. 编译原理实验中有关中缀表达式转后缀表达式输出的程序代码.-Compilation Principle experiment infix expressions related to the expression output suffix code.
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-18
    • 文件大小:2048
    • 提供者:卢雪
  1. expression_calculate_switch

    0下载:
  2. 进行包括字母、数字在内的表达式的前缀-中缀等转换及表达式的求值-Including letters, numbers, including the prefix expressions- such as conversion and infix expression evaluation
  3. 所属分类:Windows编程

    • 发布日期:2024-05-18
    • 文件大小:2048
    • 提供者:szl
  1. mingtiyansuan

    0下载:
  2. (1)利用二叉树来计算公式的真值。首先利用堆栈将中缀形式的公式变为后缀形式;然后根据后缀形式,从叶结点开始构造相应的二叉树;最后按后序遍历该树,求各子树之值,即每到达一个结点,其子树之值已经计算出来,当到达根结点时,求得的值就是公式之真值。 (2)逻辑变元的标识符不限于单字母,而可以是任意长的字母数字串。 (3)根据用户的要求显示表达式的真值表。 -(1) the use of binary tree to calculat
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-18
    • 文件大小:7168
    • 提供者:hillary
  1. middlenumberchanggetolatter

    0下载:
  2. 中缀表达式转变为后缀表达式的代码,并且求出值返回-Infix expression into an expression suffix code, and calculated the value of return
  3. 所属分类:Windows编程

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:张小虎
  1. Cshartcomputer20080706

    0下载:
  2. csharp写的计算器,用数据结构的方式写,中缀转后缀,后缀计算-CSharp written calculators, the way the data structure used to write, infix to suffix, suffix calculation
  3. 所属分类:C#编程

    • 发布日期:2024-05-18
    • 文件大小:37888
    • 提供者:luhaiheng
  1. expression

    0下载:
  2. 在cmd命令模式下利用中缀表达式的方法计算表达式的值-Cmd command mode in the use of infix expressions calculated the value of expression
  3. 所属分类:C#编程

    • 发布日期:2024-05-18
    • 文件大小:191488
    • 提供者:郑华拥
  1. biaodashiqiuzhi

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

    • 发布日期:2024-05-18
    • 文件大小:6144
    • 提供者:布瓜
  1. zzh

    0下载:
  2. 实现中缀表达式转后缀表达式最终版.c-Infix expression to achieve expression of the final version of the suffix. C
  3. 所属分类:其他小程序

    • 发布日期:2024-05-18
    • 文件大小:3072
    • 提供者:李伟光
  1. aa

    0下载:
  2. 简单的一遍编译器输入中缀表达式输出后缀表达式-Again a simple compiler input infix expression output suffix expressions
  3. 所属分类:其他小程序

    • 发布日期:2024-05-18
    • 文件大小:179200
    • 提供者:linhei
« 1 2 3 45 6 7 8 9 10 ... 20 »

源码中国 www.ymcn.org