CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 语法分析 ll(1)

搜索资源列表

  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. SA

    0下载:
  2. 编译原理课程的语法和词法翻译程序,使用的是LL(1)分析方法-Compiler theory curriculum of grammar and lexical translation process, using the LL (1) analytical methods
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:412807
    • 提供者:dodo
  1. sizeyunsuan

    0下载:
  2. 请完成以下描述算术表达式的LL(1)文法的递归下降分析程序G[E]: E→TE′ E′→ATE′|ε T→FT′ T′→MFT′|ε F→ (E)| d | i A→+|- M→*|/ 说明:终结符号d为正整数,终结符号i为变量。 其功能为: 从键盘上输入一串四则运算表达式,对照文法G[E]检查输入串的语法是否正确,如果不正确必须指出错误原因。 -Please complete the following descr iption
  3. 所属分类:Compiler program

    • 发布日期:2017-03-23
    • 文件大小:1179
    • 提供者:ck
  1. TLL1h

    0下载:
  2. 消除左递归的文法来使文法满足进行确定自顶向下分析的条件 一个LL(1)分析法的语法分析器,已通过测试。 -Elimination of left recursive grammar to the grammar to meet the parser to determine the top-down analysis of the conditions of an LL (1) analysis method has been tested.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-05
    • 文件大小:16857
    • 提供者:分界线
  1. Lexical-Analysis

    0下载:
  2. 北邮编译原理与技术,LL(1)语法分析程序-Compiler theory, LL (1) parsing program
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-02
    • 文件大小:4434283
    • 提供者:Corent Lee
  1. firstafollow

    0下载:
  2. 编译原理中,采用LL(1)语法分析法时 1.求每个文法符号的的first集 2.求每个非终结符的follow集-First set of compiler theory, LL (1) syntax analysis. Seeking each grammar symbol. Seeking of each nonterminal follow set
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-04
    • 文件大小:3740
    • 提供者:王焱
  1. forecast_analysis_chart_construction

    0下载:
  2. 编译原理中,采用LL(1)语法分析法时 1.求每个文法符号的的first集 2.求每个非终结符的follow集-First set of compiler theory, LL (1) syntax analysis. Seeking each grammar symbol. Seeking of each nonterminal follow set
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-22
    • 文件大小:3764
    • 提供者:王焱
  1. analysis

    1下载:
  2. 编写语法分析程序,实现对算术表达式的语法分析。要求所分析算术表达式由如下的文法产生: E->E+T|E-T|T T->T*F|T/F|F F->id|(E)|num 实验要求:在对输入表达式进行分析的过程中,输出所采用的产生式。 编程实现算法4.2,为给定文法自动构造预测分析表。 编程实现算法4.1,构造LL(1)预测分析程序。-Write a parser, parsing arithmetic expressions. Requirem
  3. 所属分类:Compiler program

    • 发布日期:2015-07-01
    • 文件大小:5120
    • 提供者:
  1. compiler

    1下载:
  2. 本编译器主要有四部分功能: 1、词法分析 编制一个读单词过程,从输入的源程序中,识别出各个具有独立意义的单词,即基本保留字、标识符、常数、运算符、分隔符五大类。并依次输出各个单词的内部编码及单词符号自身值。(遇到错误时可显示“Error”,然后跳过错误部分继续显示)。 2、语法分析之递归下降分析 递归下降分析法的前提是文法必需为LL(1)文法,此功能为验证性功能,已经给出文法,输入一符号串,验证是否属于该文法的句子即可。 3、语法分析之LL(1)预测分析 此
  3. 所属分类:CSharp

    • 发布日期:2017-11-11
    • 文件大小:635875
    • 提供者:Jagtu
  1. LL1fx

    0下载:
  2. 编译原理中的LL(1)语法分析程序,帮助学生了解编译器的工作过程-Compilation principle of LL (1) grammar analysis program and help students to understand the working process of the compiler
  3. 所属分类:Other systems

    • 发布日期:2017-11-28
    • 文件大小:233871
    • 提供者:陈腾达
  1. compiler

    0下载:
  2. 设计并实现SNL程序设计语言的编译程序; 四个模块: 词法分析模块 语法分析模块(递归下降方法) 语法分析模块(LL(1)方法) 语义分析模块 -The compiler source code
  3. 所属分类:Compiler program

    • 发布日期:2017-11-09
    • 文件大小:776978
    • 提供者:杨世亚
  1. c

    0下载:
  2. 为给定编程语言设计语法分析器其内容包含LL(1)预测分析表、语法分析器的处理流程等-program  compoundstmt stmt  ifstmt | whilestmt | assgstmt | compoundstmt compoundstmt  { stmts } stmts  stmt stmts |  ifstmt  if ( boolexp
  3. 所属分类:assembly language

    • 发布日期:2017-11-09
    • 文件大小:10862
    • 提供者:shw
  1. code

    0下载:
  2. 北邮大三上编译原理,语法分析程序源代码,有:LL(1)语法分析算法,LR(1)语法分析算法。-BUPT junior on compiler theory, syntax analysis program source code, there are: LL (1) parsing algorithm, LR (1) parsing algorithms.
  3. 所属分类:Compiler program

    • 发布日期:2017-11-16
    • 文件大小:1757620
    • 提供者:向月车
  1. Compile_Lab3

    0下载:
  2. LL(1)语法分析设计原理与实现技术。语法分析的设计方法和实现原理;LL(1 )分析表的构造;LL(1)分析过程;LL(1)分析器的构造-LL (1) parsing design principles and implementation techniques. Syntax analysis methods and principles of design LL (1) parsing table structure LL (1) analysis process LL (1) par
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-22
    • 文件大小:176664
    • 提供者:春春
  1. complier_scu

    0下载:
  2. 编译原理课程设计 LL(1)算法 词法分析和语法分析-complier LL(1)
  3. 所属分类:Compiler program

    • 发布日期:2017-05-08
    • 文件大小:1965145
    • 提供者:聂颖
  1. (first-follow-select)

    0下载:
  2. 构造LL(1)语法分析程序,任意输入一个文法符号串,并判断它是否为文法的一个句子。程序要求为该文法构造预测分析表,并按照预测分析算法对输入串进行语法分析,判别程序是否符合已知的语法规则,如果不符合(编译出错),则输出错误信息-Construct LL (1) parser, enter an arbitrary string of grammar symbols, and determine if it is a sentence grammar. Procedural requirements
  3. 所属分类:Compiler program

    • 发布日期:2017-04-28
    • 文件大小:203680
    • 提供者:张丽
  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. yufafenxi

    0下载:
  2. 熟悉判断LL(1)文法的方法及对某一输入串的分析过程。,学会构造LL(1)语法分析表,完成语法分析器程序,并分析一段程序,输出分析过程 -Familiar judgment LL (1) grammar of a method and the input string analysis process. Structure LL (1) parsing table, complete parser program and a program to analyze the output ana
  3. 所属分类:Compiler program

    • 发布日期:2017-04-14
    • 文件大小:4291
    • 提供者:赵雪
  1. if-else-program

    0下载:
  2. C/C++开发的编译原理相关程序:IF-ELSE条件语句的翻译程序设计;利用LL(1)文法,对以文件形式输入的if条件语句进行词法、语法及语义分析,并最终得到以四元式形式表示的中间代码,要求将词法及语法分析结果以文件形式输出。-Compiler principles related procedures: translation program designed IF-ELSE conditional statement use LL (1) grammar, for if condition
  3. 所属分类:Console

    • 发布日期:2017-05-03
    • 文件大小:1000241
    • 提供者:许大卫
  1. compile

    0下载:
  2. 用Java实现的基于SNL语言的词法分析与LL(1)语法分析编译器(Java implementation using SNL language lexical analysis, and LL (1) syntax analysis compiler)
  3. 所属分类:编译器/解释器

    • 发布日期:2017-12-16
    • 文件大小:6172672
    • 提供者:哈哈aa
« 1 2 3 4 5 6 7 89 »
搜珍网 www.dssz.com