CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 编译器/词法分析 搜索资源 - IDEA

搜索资源列表

  1. WordAnalyser

    0下载:
  2. 1.1 引言 1.1.1 设计目的 本次课程设计是在完成一个学期的编译原理课程之后,为了进一步加深对编译原理相关知识的理解,培养实际解决问题的能力而进行的。结合本学期所开设的软件工程课程,本次课程设计实验过程要求按照软件工程的思想来组织开发过程,按照软件生命周期的阶段划分来进行。由于课程设计规模较小,所以对软件生命周期进行适当的合并,简化为五个阶段,即需求分析、总体设计、详细设计、编码实现和测试。 1.1.2 设计任务 针对本次课程设计我们设计了一个简化的pascal语言,称
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:178379
    • 提供者:钟国生
  1. simulink_labs

    0下载:
  2. This project allows you to learn communication systems in greater depth. It contains the Simulink files (*.mdl) which are block design files of various communication systems such as AM, DSB-SC, FM, PLL, Data Acquisition, Digital Data Transmission, PC
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:2469104
    • 提供者:haibak
  1. word

    0下载:
  2. 编译原理词法分析器,算法的基本任务是从字符串表示的源程序中识别出具有独立意义的单词符号,其基本思想示根据扫描到单词符号的第一字符的种类,拼出相应的单词符号。-Lexical analyzer compiler theory, algorithms, the basic task is to identify the string representation of the source word with independent significance of symbols, the basi
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:1227
    • 提供者:song
  1. chepaidingweixidong

    0下载:
  2. 1.采集到的车牌照图片使用的是24位RGB的BMP位图,即真彩图。需要将其转化为256级灰度图像。 2.将灰度图像转换成为二值图像。 3.去除噪声采用的方法:中值滤波、直方图均衡。 4.数学形态学的基本思想是用具有一定形态的结构元素去度量和提取图像中的对应形状以达到对图像分析和识别的目的。-1. Collection of vehicle license plate image using a 24-bit RGB bitmap in BMP, that is true color.
  3. 所属分类:Compiler program

    • 发布日期:2017-05-16
    • 文件大小:4490647
    • 提供者:李国庆
  1. DO-while

    0下载:
  2. do—while语句的翻译程序,使用的是递归向下的思想,中间代码采用四元式的形式输出-do-while statement translation process, using a recursive down the idea of using intermediate code of the form of four output
  3. 所属分类:Compiler program

    • 发布日期:2017-03-27
    • 文件大小:204059
    • 提供者:小崔
  1. LR

    1下载:
  2. 1.实验目的 设计一个LR分析器,实现对表达式语言的分析,加深对LR语法分析方法的基本思想的理解,掌握LR分析器设计与实现的基本方法。 2.实验要求 建立文法及其LR分析表表示的数据结构,设计并实现一个LALR(1)的分析器,对源程序经词法分析后生成的二元式代码流进行分析,如果输入串是文法定义的句子则输出“是”,否则输出“否”。 3.实验内容 (1)文法描述及其LALR(1)分析表 描述表达式语言的文法G如下: -1. The experiment was to de
  3. 所属分类:Compiler program

    • 发布日期:2016-10-18
    • 文件大小:290259
    • 提供者:sh_xj
  1. ll(1)fenxi

    0下载:
  2. 本程序是采用的LL(1)方法进行的语法分析,而LL(1)的分析方法是属于自上而下的方法。 自上而下分析的基本思想是:对任意输入串,试图用一切可能的方法,从文法开始符号(根结点)出发,自上而下为输入串建立一棵语法树。从推导的角度看,它是从文法的开始符号出发,反复使用各种产生式,寻找与输入串匹配的推导。 在输入之前必须要进行该文法是不是LL(1)文法的判断,然后再构造相应的LL(1)分析表来用预测分析方法进行语法分析,依据下面的文法及分析表来设计程序实现预测分析的分析过程。
  3. 所属分类:Compiler program

    • 发布日期:2017-03-26
    • 文件大小:1558
    • 提供者:WM
  1. diguixiajiang

    0下载:
  2. 递归下降的基本思想: 为每一个非终结符构造一个子程序,每一个子程序的过程体中按该产生式的候选项分情况展开,遇到终结符直接匹配,而遇到非终结符就调用相应非终结符的子程序。该分析从调用文法开始符号的子程序开始,直到所有非终结符都展开为终结符并得到匹配为止。若分析过程中达到这一步则表明分析成功,否则表明输入中有语法错误。递归下降分析对文法的限制是不能有公共左因子和左递归。由于文法是递归定义的,因此子程序也是递归的,被称为递归下降子程序。 -The basic idea of recursiv
  3. 所属分类:Compiler program

    • 发布日期:2017-03-22
    • 文件大小:1456
    • 提供者:WM
  1. Irony

    0下载:
  2. this a new idea for generating syntax parsing code,it can be used instead of lex and yacc toolz-this is a new idea for generating syntax parsing code,it can be used instead of lex and yacc toolz
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:279352
    • 提供者:hamada
  1. Lexer

    0下载:
  2. 自己写的词法分析器,是按照导师的想法写的,可以作为信息院的毕业设计。-Write your own lexical analyzer is written in accordance with the idea of mentors can be used as information homes graduation.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:3537
    • 提供者:weijian
  1. RecursiveDescentParser

    0下载:
  2. 一种自顶向下的语法分析方法的思想,根据文法的产生式规则绘制相应的转换图,并能对之进行简化,继而构造出相应的递归下降分析器。-A kind of top-down method of syntax analysis of the idea, according to the grammar production rules mapping the corresponding conversion map and the simplification can then construct the
  3. 所属分类:Compiler program

    • 发布日期:2017-04-16
    • 文件大小:72503
    • 提供者:zhangxueli
  1. Chemicals2204995252011

    0下载:
  2. I have written this program to make it easy for anyone to make computer graphics based structrual design of simple compounds. (User can also make very complex chemical structures but he/she will need a clear idea of 3D geometry and some basic trigno
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:356982
    • 提供者:blesson
  1. tcc-0.9.25

    0下载:
  2. 有没有想过使用 C 语言作为游戏脚本? TinyC 可以让你实现这个想法. 这是个微型的 C 语言编译器, 可以附加在宿主程序上, 运行时编译任何 C99 代码.-Have you ever thought to use C language as a game scr ipt? TinyC allows you to implement this idea, which is a miniature of the C language compiler, can be attached to
  3. 所属分类:Compiler program

    • 发布日期:2017-03-24
    • 文件大小:340223
    • 提供者:刘某
  1. 类与对象

    1下载:
  2. 类与对象,封装,构造方法的源码,该源码需要用idea进行打开,才能看到,然后在进行使用。
  3. 所属分类:编译器/词法分析

搜珍网 www.dssz.com