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

搜索资源列表

  1. GrammarAnalysis

    0下载:
  2. 语法分析器 使用算符优先分析方法 可以输出 first集 last集 并对输入的字符串进行处理 判断是否输入合法-Parser using the operator first set of analysis methods can be exported first and last set of input processing to determine whether the input string is valid
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:224340
    • 提供者:李广
  1. LL1

    0下载:
  2. LL(1)文法使用的是确定的自顶向下的分析技术。LL(1)的含义是:第一个L表明自顶向下分析是从左向右扫描输入串,第2个L表明分析过程中将使用最左推导,1表明只需向右看一个符号便可决定如何推导,即选择哪个产生式(规则)进行推导。 LL(1)文法的判别需要依次计算FIRST集、FOLLOW集和SELLECT集,然后判断是否为LL(1)文法,最后再进行句子分析。 -LL (1) grammar using a set top-down analysis techniques. LL (1)
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:298638
    • 提供者:biao
  1. 41695055ll1

    0下载:
  2. 该程序可以写出 first集和分follow集自己打开看就知道-The program can write the first set and the sub-set of their own follow open to see that
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-07
    • 文件大小:168292
    • 提供者:fly
  1. yufafenxiqi

    0下载:
  2. 该程序能求出任意给定的文法的所有非终极符和终极符的first集,所有非终极符的follow集,所有语句的select集,能求出能导空的非终极符集合。给定任意字符串该程序能判定出是否能接受。由于空符号不好输入,在程序中用到空符号全部用@表示。-The program can calculate any given grammar of all non-ultimate breaks and the ultimate symbol of the first set, all non-ultimate
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-02
    • 文件大小:4748
    • 提供者:徐禄
  1. ll(1)

    0下载:
  2. ll(1)文法分析程序,实现first集,follow即等的运算-ll (1) grammar analysis programs to achieve first set, follow the operation, etc.
  3. 所属分类:Compiler program

    • 发布日期:2017-03-27
    • 文件大小:11308
    • 提供者:张三
  1. Operator_priority

    0下载:
  2. 自动的编译原理算符优先算法(具有自动算FIRST集,FOLLOW集和算符优先表,)编译后为exe,可输入参数执行环境为vs2005 语言C#-Automatic Compilation Principle operator priority algorithm (with automatic calculation FIRST sets, FOLLOW sets, and operator priority table,) compiled for the exe, the implementa
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:33706
    • 提供者:高飞
  1. suanfuyouxian

    0下载:
  2. c++实现编译原理的算符优先分析~~输入一个文法和first集输出算符分析表-c++ compiler theory of the operator to achieve the priority of ~ ~
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:6390
    • 提供者:周俊辉
  1. CourseWork

    0下载:
  2. 编译原理课程设计,求文法的first集,follow集,sellect集,实现ll1分析法-Course Design Compiler, find the first set of grammar, follow set, sellect set and achieve ll1 analysis
  3. 所属分类:Compiler program

    • 发布日期:2017-04-10
    • 文件大小:2045357
    • 提供者:liu
  1. analysis

    0下载:
  2. 输入一个文法,可得到文法的FIRST集、FOLLOW集、SELECT集,可以判断文法是否为LL(1)文法,并可求出文法的预测分析表,以及串的自顶向下的分析过程。输出很清晰。-Enter a grammar, the grammar of the FIRST sets available, FOLLOW sets, SELECT set, you can determine whether the grammar LL (1) grammar, and can find the grammar o
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-06
    • 文件大小:3140
    • 提供者:chen xiang
  1. Syntax_Analysis-LL(1)-LCC

    0下载:
  2. 编译原理之语法分析LL(1) (1)消除左递归 (2)求First集 (3)求Follow集 (4)预测分析表 (5)预测分析过程-Compiler theory of parsing LL (1) (1) elimination of left recursion (2) Find First Set (3) Find Follow set (4) prediction of sheet (5) prediction analysis
  3. 所属分类:Compiler program

    • 发布日期:2017-03-22
    • 文件大小:66567
    • 提供者:
  1. grammar

    0下载:
  2. SLR语法分析器,自动生成。生成项目集,求First集,求Follow集,生成goto表和action表。-SLR parser, automatically generated. Build the project set, First set of requirements, seeking Follow sets, action table and goto table generation.
  3. 所属分类:STL

    • 发布日期:2017-04-02
    • 文件大小:50654
    • 提供者:zhangqida
  1. syntax

    0下载:
  2. LL(1)文法的实现。具体设计要求如下: 1. 可以使用任何语言来完成,例如:Java、C、C++。 2. 文法采用常用的方式进行描述,例如:S→aA。 3. 以文件方式读取文法。 4. 分别求出每一个非终结符FIRST 集FOLLOW集和SELECT集。 5. 画出预测分析表。 6. 判定读入的文法是否是LL(1)文法。 7. 给定的任意符号串判定是否是文法中的句子,将分析过程用计算机打印出来。 8. 查出文法中是否含有左递归或左公因子。若有则消除左公因子和左递
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:5713
    • 提供者:冯景航
  1. words-ananogy

    0下载:
  2. 词法分析器 实现first集与follow集-analysis of word
  3. 所属分类:Compiler program

    • 发布日期:2017-04-05
    • 文件大小:8305
    • 提供者:chen
  1. 2

    0下载:
  2. 编译原理对LL1文法的判断和对first集和follow集地部分处理-LL1 grammar compiler theory of judgments and the first set to set and follow some process
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:4154
    • 提供者:caoge
  1. android.widget-first

    0下载:
  2. android.widget合集(上),Android中文翻译组-android.widget Collection (on), Android Chinese translation group
  3. 所属分类:android

    • 发布日期:2017-04-02
    • 文件大小:691698
    • 提供者:小于
  1. grammar-analyser

    0下载:
  2. 1、任意输入一个文法G; 2、处理文法中可能存在的左递归和公共左因子问题; 3、对文法中的每个非终结符自动生成并打印输出: ① FIRST集; ② FOLLOW集; 4、判断处理后的文法是否为LL(1)文法,如果是,自动生成并打印输出其预测分析表; 5、模拟分析过程。 如输入一个句子,如果该句子合法则输出与句子对应的语法树;能够输出分析过程中每一步符号栈的变化情况。如果该句子非法则进行相应的报错处理。 -An arbitrary input to a gr
  3. 所属分类:Compiler program

    • 发布日期:2017-05-03
    • 文件大小:1486234
    • 提供者:chenlu
  1. cSharplr(1)analyzer

    0下载:
  2. 词法分析和语法分析,可以使用自己写入文法输出FIRST集及预测表-Lexical analysis and parsing, you can use to write the grammar output FIRST sets and prediction table
  3. 所属分类:Compiler program

    • 发布日期:2017-05-10
    • 文件大小:2484885
    • 提供者:bianxuewen
  1. LL1-Parser

    0下载:
  2. 采用LL1算法构造的语法分析器,可以求出first集、follow集、构造分析表等-LL1 syntax analyzer
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:7007
    • 提供者:Wall-E
  1. BY_work3

    0下载:
  2. 能导出first集与follow集~我自己写的代码,希望能给大家帮助-Can export the first set and follow set ~ I write code, I hope to give you help
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:8514
    • 提供者:陈予诚
  1. ll1

    0下载:
  2. LL(1)文法的实现,主要包括文法的读取、消除左递归、求First集、Follow集、Select集,生成预测分析表,对给定句子分析是否符合文法。-LL (1) grammar implementations, read mainly include grammar to eliminate left recursion, seeking First set, Follow Set Select set generate predictive analysis table, analysis m
  3. 所属分类:Compiler program

    • 发布日期:2017-11-07
    • 文件大小:2285014
    • 提供者:czl
« 1 2 34 5 6 7 8 9 10 ... 17 »
搜珍网 www.dssz.com