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

搜索资源列表

  1. exp

    0下载:
  2. 处理了正确的算术表达式的转换为逆波兰式后进行计算,可处理多位整型数的运算,如:10*(15-5)+30/3#-Dealing with the correct arithmetic expression is converted to Reverse Polish-style after the calculation, can handle a number of integer arithmetic, such as: 10* (15-5)+ 30/3#
  3. 所属分类:Data structs

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

    0下载:
  2. 用栈实现的算术表达式求值算法。输入一串含有字母的表达式,要求输入其值即可进行计算。-Stack with the realization of the arithmetic expression evaluation algorithm. Enter a string containing the letters of expression, for the importation of its value can be calculated.
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-02
    • 文件大小:1807
    • 提供者:liuhongliruc
  1. datastructure

    0下载:
  2. 本学期所有数据结构的大作业一,设A与B分别为两个带有头结点的有序循环链表(所谓有序是指链接点按数据域值大小链接,本题不妨设按数据域值从小到大排列),list1和list2分别为指向两个链表的指针。请写出将这两个链表合并为一个带头结点的有序循环链表的算法。二,本次实验的题目为表达式求值,要求设计一个程序,演示用算符优先法对算术表达式求值的过程。 即编写程序把前缀表达式转换成后缀表达式,并计算结果。用以下三组数据测试程序: 3*(7-2); 2*(6+2*(3+6*(6+6)))+(6+
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:5592
    • 提供者:张欣
  1. 20049741130012

    0下载:
  2. 布尔表达式的翻译,对输入的文法判断其合法性,并输出逆波兰表达式 -Boolean expressions of the translation, the grammar of the input to determine its legitimacy, and output Reverse Polish expression
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-25
    • 文件大小:189835
    • 提供者:xieli123
  1. 22302304232

    0下载:
  2. 对条件语句: if 〈布尔表达式〉〈赋值语句〉 else 〈赋值语句〉, 进行词法,语法分析,并根据语法制导翻译方法将条件语句翻译成四元式中间代码形式,最后输出翻译后的四元式代码。-Of conditional statements: if <Boolean expression> <assignment statement> else <assignment statement> for lexical, syntax analysis, and in a
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-12
    • 文件大小:2985577
    • 提供者:xieli123
  1. zhongzhuizhuanhouzhui

    0下载:
  2. 中缀表达式转换成后缀表达式,很经典的算法,通过编译实现!-Infix expressions into expressions suffix, it is the classic algorithm, through the compiler to achieve!
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:3579
    • 提供者:wxg
  1. charmatch

    0下载:
  2. 基于正则表达式的字符串匹配,对于学习正则表达式和字符串的同学们十分有帮助-Based on regular expression string matching, regular expressions for the learning of students and string very helpful
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:273033
    • 提供者:Yang
  1. JavaReg

    0下载:
  2. Java中的正则表达式,使用方法,以及一些常用的表达式.-Java s regular expressions, the use of methods, as well as some commonly used expressions.
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:10355
    • 提供者:xiahy
  1. jisuanqi

    1下载:
  2. VC++课程设计(GDUT) 计算器 (内含实验报告) 1.设计任务 系统地学习面向对象编程思想,了解MFC架构,逐步熟悉可视化编程环境Visual C++,并在此环境下设计并实现一个简单计算器系统,该计算器应能实现如下功能: 1)、二进制、八进制、十进制及十六进制数的加、减、乘、除、乘方、取模等简单计算 2)、科学计算函数,包括(反)正弦、(反)余弦、(反)正切、(反)余切、开方、指数等函数运算 3)、以角度、弧度两种方式实现上述部分函数 4)、具备历史计算的记忆功
  3. 所属分类:GUI Develop

    • 发布日期:2017-05-17
    • 文件大小:4641091
    • 提供者:caicai
  1. C

    1下载:
  2. C#算术表达式求值我是的算法核心是逆波兰式.还有就是w3eval这个算术表达式求值算法很不错.但有一种表达式它会报错.我想这是一个BUG:w3eavl不能计算"-(3+5)"的值.或者类似的计算式.-C# Arithmetic expressions evaluate my algorithm is the core of Reverse Polish-style. W3eval there is the arithmetic expression evaluation algorithm is
  3. 所属分类:Compiler program

    • 发布日期:2017-04-15
    • 文件大小:6728
    • 提供者:箱子
  1. biaodashiqiuzhi

    0下载:
  2. 对于一个表达式求值 用堆栈实现 数据结构第一个实验 没有做附加功能 -For an expression evaluation stack data structure with the first experiment did not do additional functionality
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1426
    • 提供者:409
  1. RegexExample1

    0下载:
  2. 输入某个正则表达式和一个字符串,然后验证该字符串中是否包含与正则表达式匹配的内容。 -Enter a regular expression and a string, and then verify whether the string contains regular expression matching the content.
  3. 所属分类:.net

    • 发布日期:2017-04-29
    • 文件大小:13120
    • 提供者:denghuashan
  1. 24

    0下载:
  2. 输入任意四个整数(0到10),运算符只有加减乘除,还有括号.每个数只能且必须用一次。要求判断这些表达的结果中是否有24。如果有,输出计算表达式:如输入4,6,1,1 输出 4*6*1*1 =24 (允许有括号)。-Enter any four integer (0-10), only addition and subtraction multiplication and division operators, as well as brackets. Each number only once
  3. 所属分类:CSharp

    • 发布日期:2017-04-12
    • 文件大小:1532
    • 提供者:df
  1. Geneexpression

    0下载:
  2. 基因表达式,人工智能研究,适合初学者学习,希望本程序得到您的支持!系-Gene Expression, artificial intelligence research, suitable for beginners to learn, I hope this procedure your support! Department of thanks
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-12
    • 文件大小:1469
    • 提供者:寇振强
  1. RegTest

    0下载:
  2. 正则表达式测试工具,用于测试正则表达式的工具-a soft ware for RegTest
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-06
    • 文件大小:29863
    • 提供者:彭郭盛
  1. 2694

    0下载:
  2. poj 2964 逆波兰表达式 递归问题-Reverse Polish expression poj 2964 recursive problem
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-02
    • 文件大小:831929
    • 提供者:刘昊
  1. Expression

    0下载:
  2. 功能比较强的表达式解析、转换、计算,可以具有比较完善的查错功能。-expression
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-27
    • 文件大小:464380
    • 提供者:夜风
  1. 1

    0下载:
  2. 实现中缀表达式转后缀表达式,并利用后缀表达式求值-Infix expression to expression algorithm suffix
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-03
    • 文件大小:892264
    • 提供者:tlh
  1. InToPost

    0下载:
  2. 中缀表达式转换成后缀表达式算法,并求算术表达式的方法。-Infix expression into the expression suffix algorithm, and methods for arithmetic expressions.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-13
    • 文件大小:2042
    • 提供者:吕秀彬
  1. RegularExpression

    0下载:
  2. 精通正则表达式 英文版第一版 pdf 中文版 第三版 chm格式-Mastering Regular Expressions the first edition in English(pdf) and the the third edition in Chinese version(chm)
  3. 所属分类:Editor

    • 发布日期:2017-05-13
    • 文件大小:3410733
    • 提供者:
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 50 »
搜珍网 www.dssz.com