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

搜索资源列表

  1. PARSER

    0下载:
  2. a ll1 parser for windows
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-02
    • 文件大小:2863
    • 提供者:avi
  1. LL(1)

    0下载:
  2. 用c语言来实现,判断一个文法是否为LL(1)文法,并求该文法的First 和Follow集合,比较有用。-C language used to achieve, to determine whether a grammar for LL (1) grammar, and grammar for the collection of First and Follow, more useful.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:4332
    • 提供者:张强
  1. PL0

    0下载:
  2. 用递归下降的方法来设计PL/0编译器。以下我们给出该语言的FIRST和FOLLOW集合。-The decline in use of recursive methods to the design of PL/0 compiler. Below we give the language of the FIRST and FOLLOW set.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:7941
    • 提供者:李绿叶
  1. FirAndFol

    0下载:
  2. 封装非终结符集合的类Vn,可以求出 FIRST集和FOLLOW集。-Package of non-terminal symbol set of classes Vn, you can find the FIRST sets and FOLLOW sets.
  3. 所属分类:Console

    • 发布日期:2017-03-30
    • 文件大小:1134
    • 提供者:伯伦
  1. 20029440913

    0下载:
  2. (1) 根据LL(1)分析法编写一个语法分析程序,可根据自己实际情况,选择以下一项作为分析算法的输入: a. 直接输入根据已知文法构造的分析表M b.输入文法的FIRST(α)和FOLLOW(U)集合,由程序自动生成文法的分析表M; c.输入已知文法,由程序自动构造文法的分析表M。 (2) 程序具有通用性 所开发的程序可适用于不同的文法和任意输入串,且能判断该文法是否为LL(1)文法。 (3) 有运行实例 对于输入的文法和符号串,所编制的语法分析程序应能正确判断此
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:289814
    • 提供者:zmf
  1. FFFF

    0下载:
  2. this program is about first and follow
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-11
    • 文件大小:980
    • 提供者:Gautami
  1. sammi

    1下载:
  2. 用java语言编写的LL(1)文法分析程序,输出first集、follow集和分析表,并对输入串进行预测分析。 -Written by java LL (1) grammar analysis program, the output first set, follow the table set and analysis, and prediction of the input strings.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-05
    • 文件大小:7930
    • 提供者:Jwill
  1. first_follow

    0下载:
  2. first and follow in c
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-10
    • 文件大小:1057
    • 提供者:ISHAN
  1. yufa

    0下载:
  2. VS2010编写的LL(1)语法分析器,first和follow集合,构造预测分析表,以及对输入进行分析!-LL parser, seeking first and follow sets, table structure prediction analysis, and analysis of the input grammar!
  3. 所属分类:Compiler program

    • 发布日期:2017-05-21
    • 文件大小:6213983
    • 提供者:jim
  1. FirstFollowLL

    0下载:
  2. However, grammars that are not left recursive and are left factored may still not be LL(1). To see if a grammar is LL(1), try to build the parse table for the predictive parser by the method we are about to describe. If any element in the table c
  3. 所属分类:software engineering

    • 发布日期:2017-04-05
    • 文件大小:40789
    • 提供者:payal
  1. first_follow

    0下载:
  2. firto find the first and follow of gramnmer
  3. 所属分类:Graph program

    • 发布日期:2017-04-10
    • 文件大小:1066
    • 提供者:five_star
  1. LL1

    0下载:
  2. LL1,实现LL1的基本功能,实现first和follow集,-LL1, LL1 of the basic functions of first and follow sets
  3. 所属分类:Compiler program

    • 发布日期:2017-05-26
    • 文件大小:9603652
    • 提供者:lulu
  1. FIRST_FOLLOW

    0下载:
  2. First and follow in C
  3. 所属分类:Compiler program

    • 发布日期:2017-04-11
    • 文件大小:1073
    • 提供者:Rasel
  1. chengxu

    0下载:
  2. 编译原理课程实验求文法的first和follow集-Compiler principle course experiments seeking grammar first and follow sets
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:21947
    • 提供者:杨文涛
  1. SLR

    0下载:
  2. SLR分析器SLR语法分析器,能求出FIRST、FOLLOW 集和构造出SLR分析表,出入一个句子,能动态演示匹配过程。(-The the SLR parser SLR parser can be obtained FIRST and FOLLOW sets and construct the SLR analysis table, and out of a sentence, dynamic presentation of the matching process. (
  3. 所属分类:assembly language

    • 发布日期:2017-11-27
    • 文件大小:608879
    • 提供者:杨程
  1. diguixiajiangwenfa

    0下载:
  2. 一、实验目的 实现一个递归下降语法分析程序,识别用户输入的算术表达式。 二、实验主要内容 1、文法如下: E® TE` E’® +TE’|-TE’|e T® FT` T’® *FT’|/FT’|e F® (E)|i 2、求取各非终结符的First及Follow集合 3、编程实现下降递归分析法,识别从键盘输入的关于整数或浮点数的算术表达式(在此,上述文法中的i代表整数或浮点数) 4、对于语法错误,要指出错误具体信息。
  3. 所属分类:Applet

    • 发布日期:2017-11-23
    • 文件大小:894
    • 提供者:zhoujiaping
  1. first_follow

    0下载:
  2. firto find the first and follow of gramnmer
  3. 所属分类:Graph program

    • 发布日期:2017-04-11
    • 文件大小:1111
    • 提供者:swhole
  1. First_follow

    0下载:
  2. Caculate first and follow
  3. 所属分类:Embeded-SCM Develop

    • 发布日期:2017-04-13
    • 文件大小:2069
    • 提供者:Thiis
  1. First_follow

    0下载:
  2. Caculate first and follow
  3. 所属分类:Embeded-SCM Develop

    • 发布日期:2017-04-13
    • 文件大小:2108
    • 提供者:edthe
  1. LL1

    0下载:
  2. 完成LL(1)语法分析器,包含FIRST集和FOLLOW集,预测分析表-LL (1) grammar analyzer, including FIRST and FOLLOW sets, forecast analysis table
  3. 所属分类:Compiler program

    • 发布日期:2017-04-29
    • 文件大小:136360
    • 提供者:王旺
« 1 23 4 5 6 7 8 9 10 ... 13 »
搜珍网 www.dssz.com