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

搜索资源列表

  1. 编译原理实验一

    0下载:
  2. 一个具体的词法分析程序,从输入的源程序中,识别出各个具有独立意义的单词,即基本保留字、标识符、常数、运算符、分隔符五大类。并依次输出各个单词的内部编码及单词符号自身值。(遇到错误时可显示“Error”,然后跳过错误部分继续显示)-a specific lexical analysis procedures, imported from the source to identify all the independent significance of the word, that is to r
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:81.42kb
    • 提供者:宗宗
  1. mn

    1下载:
  2. 算符优先分析算法实现 编译原理课程设计 显示移进规约-operator priority analysis algorithm compiler theory of curriculum design show moved into the Statute
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:1.51kb
    • 提供者:钱雷
  1. cffx(skyw)

    0下载:
  2. 实现词法分析,用VB写的对结果进行分类显示-achieve lexical analysis using VB wrote to the classification results show
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:970.77kb
    • 提供者:skyw
  1. rapport_of_lex_and_yacc

    0下载:
  2. 一篇关于LEX与YACC的编译原理报告,这是我在国外学校老师给我们看的资料,里面有非常详实的说明与源代码-one of the LEX and YACC compiler theory, This is my foreign teachers to show us the information, which is very informative notes and source code
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:118.99kb
    • 提供者:pengdi
  1. exam1

    0下载:
  2. 汇编代码,实现数的排序,只有排序部分,没有显示部分,显示部分可以自己加上-Assembly code, the achievement of several of the sort that only sort of did not show part of show can be added by
  3. 所属分类:Compiler program

    • 发布日期:2017-04-05
    • 文件大小:787byte
    • 提供者:lzb
  1. M6

    0下载:
  2. 微机编程小题,可实现数字的比较与显示等功能对初学者很有帮助-Computer programming trivial, can be realized compared with the figures show that features such as very helpful for beginners
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:2.26kb
    • 提供者:王伟娜
  1. PCFG

    0下载:
  2. 一个简单的PCFG分析器 分析结果逐个以树形图方式显示,如果一个句子有多个结果,在显示框中同时显示-A simple PCFG parser with the results of the analysis-by-tree approach shows that if there is more than the result of a sentence, in the box at the same time show show
  3. 所属分类:Compiler program

    • 发布日期:2017-04-08
    • 文件大小:226.79kb
    • 提供者:李明
  1. untitled2

    0下载:
  2. this program use to show LL1
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:46.86kb
    • 提供者:ashraf
  1. sequenl

    0下载:
  2. 模拟采用指定结构对文件进行存储。能够处理以下的情形: ①能够输入给定的存储空间大小,文件的个数及大小; ②能显示出各文件占用空间的情况。 -Simulated using a file storage structure. Able to handle the case of the following: ① to enter the storage space given the size, number and size of documents ② documents to
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:1.79kb
    • 提供者:李伟霞
  1. 2

    0下载:
  2. this file contain the exe file. & create the kriging. & show the picture.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-16
    • 文件大小:32.82kb
    • 提供者:Hmj
  1. AsmFun

    0下载:
  2. AsmFun(汇编指令查询器) V1.3 Build 07.01 绿色版 1、可查询汇编指令(支持过滤查询) 2、添加常用工具(支持自定路径,请自行修改config.ini) 3、支持QQ窗体的缩入伸出功能(先点击收缩窗品按钮,然后拉到桌面顶端) 版本:1.3 Build 07.01 增加:添加、修改、删除 指令功能 指令列表支持鼠标滚动 修正了某些Bug 添加运行、关闭特效 修正收缩窗口的Bug 屏敝了右键菜单 添加
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:579.9kb
    • 提供者:未来
  1. Parser_Dev

    0下载:
  2. 用C语言实现了C-程序的语法分析,以控制空格来显示层次,表示出了语法分析树-With the C language to implement the syntax of C-program analysis in order to control the space to show the level of expressed syntax parse tree
  3. 所属分类:Compiler program

    • 发布日期:2017-04-05
    • 文件大小:24.03kb
    • 提供者:张龙
  1. 1

    0下载:
  2. 语法分析是编译程序的核心部分。语法分析的作用是识别由词法分析给出的单词符号序列是否是给定的文法的正确句子。目前语法分析常用的方法右自顶向下分析和自底向上分析两大类。 确定的自顶向下方法,是从文法的开始符号,考虑如何根据当前的输入符号(单词)唯一的确定选用哪个产生式替换相应非终结符往下推导。 LL(1)文法是一种确定的自顶向下的分析方法。 LL(1)的含义是:第一个L表明自顶向下分析从左向右扫描输入串,第二个L表明分析过程中将用最左推导,1表明只需向右看一个符号便可以决定如何推导即选
  3. 所属分类:Compiler program

    • 发布日期:2017-05-15
    • 文件大小:3.87mb
    • 提供者:孔小亮
  1. StackExample

    0下载:
  2. Simple Stack example. Which show you how to implement LIFO in stack using link list.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-13
    • 文件大小:2.04kb
    • 提供者:shahid
  1. scanner

    0下载:
  2. 此程序完成了编译原理的词法和语法扫描的基本要求,最后显示扫描分析结果-This process is completed the compilation of lexical and syntax scanning principle the basic requirements, the final scan results show
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:291.47kb
    • 提供者:张学兵
  1. bianyiyuanli2008

    0下载:
  2. 编译原理词法分析,语法分析功能实现,能够显示出各种文法的功能-Compiler theory lexical analysis, syntax analysis functions, and they can show a variety of grammatical features
  3. 所属分类:Compiler program

    • 发布日期:2017-05-04
    • 文件大小:1.31mb
    • 提供者:张三
  1. complier

    0下载:
  2. 我们设计的编译程序涉及到编译五个阶段中的三个,即词法分析器、语法分析器和中间代码生成器。编译程序的输出结果包括词法分析后的二元式序列、变量名表、状态栈分析过程显示及四元式序列程序,整个编译程序分为三部分: (1) 词法分析部分 (2) 语法分析处理及四元式生成部分 (3) 输出显示部分 -We designed the compiler to compile the five stages involved in the three, namely, lexical analy
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:76.42kb
    • 提供者:刘彦生
  1. digtimer

    0下载:
  2. 利用液晶和中断来实现时间,做成显示数字时钟-show the digital time
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:12.86kb
    • 提供者:多尼K
  1. nfa

    0下载:
  2. NFA algorithm to show the nfa of a given regular expression
  3. 所属分类:Compiler program

    • 发布日期:2017-04-11
    • 文件大小:821byte
    • 提供者:nancy
  1. yufa

    0下载:
  2. 选择对各种常见高级程序设计语言都较为通用的语法结构无符号数的算术四则运算作为分析对象,给出其文法描述(注意应与所采用的语法分析方法比较贴近),设计并实现一个完整的语法分析程序。 输入:由实验一输出的单词类别串,如1,3,1。 输出:对于所输入的源程序,如果输入符号串是给定文法定义的合法句子,则输出“RIGHT”,并且给出每一步归约的过程;如果不是句子,即输入串有错误,则输出“ERROR”,并且显示已经归约出的各个文法符号,以及必要的出错说明信息。 -Choose a variety
  3. 所属分类:Compiler program

    • 发布日期:2017-04-11
    • 文件大小:1.47kb
    • 提供者:韩平
« 12 »
搜珍网 www.dssz.com