搜索资源列表

  1. 判断是否为ll(1)文法程序

    0下载:
  2. 一个程序,用于判定给定的文法是否为LL(1)文法。 实现了:1.文法的机内表示;2. FIRST集和FOLLOW集的计算; 3. LL(1)预测分析表的构造。-a procedure for the determination of grammar to whether LL (1) grammar. Realized : 1. Grammar said the machines; 2. FIRST FOLLOW sets and se
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:23961
    • 提供者:luo
  1. ll(1)词法分析

    0下载:
  2. LL(1)语法分析程序,编译原理课用得到哦,可以作到词法分析表吧(idle)-LL (1) syntax analysis program, compile Principle used to be, oh, Lexical analysis can be done table it (idle)
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:82075
    • 提供者:王淼
  1. LL(1)_parsing

    0下载:
  2. 关于编译方面的LL(1)语法分析程序,可以输出分析栈,按要求可以实现对输入字符串的完整分析归约过程。-compiler on the LL (1) syntax analysis procedures can output analysis stack, by asking for input strings to achieve a complete analysis of the reduction process.
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:1890
    • 提供者:zhou
  1. LL(1)Syntax

    0下载:
  2. 用LL(1)方法分析四则运算,包括一个词法分析的头文件。-with LL (1) Analysis of four operations, including a lexical analysis of the headers.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:3710
    • 提供者:田甜
  1. LL(1)daima

    1下载:
  2. [编译原理课程设计-源代码]LL(1)语法分析代码(c++).-[Design Compiler Principle-source code] LL (1) syntax analysis code (c).
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:2194
    • 提供者:xiaogemao
  1. 编译原理LL(1)分析表

    0下载:
  2. 编译原理LL1分析表- Translation principle LL1 analytical table
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:195885
    • 提供者:王克迅
  1. compile

    0下载:
  2. 编译原理大作业,完成了词法分析,递归下降分析,LL(1)分析,算符优先分析,中间代码生成等-Compiler Construction Principles large operations, completed a lexical analysis, recursive descent analysis, LL (1) analysis, operator priority analysis, intermediate code ge
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-17
    • 文件大小:35840
    • 提供者:ddl
  1. yufa

    0下载:
  2. 语法分析器,对已给pascal语言文法,构造LL(1)分析表,编制语法分析程序,要求将错误信息输出到语法错误文件中,并输出分析句子的过程-Parser that have been to the pascal language grammar, structure LL (1) analysis table, the preparation of parsing procedure that requires the output to
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-17
    • 文件大小:1951744
    • 提供者:陈美娟
  1. LL1_VC

    0下载:
  2. LL(1)文法使用的是确定的自顶向下的分析技术。LL(1)的含义是:第一个L表明自顶向下分析是从左向右扫描输入串,第2个L表明分析过程中将使用最左推导,1表明只需向右看一个符号便可决定如何推导,即选择哪个产生式(规则)进行推导。-LL (1) grammar using a set top-down analysis techniques. LL (1) the meaning is: the first one L shows a t
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-17
    • 文件大小:3693568
    • 提供者:biao
  1. 20029440913

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

    • 发布日期:2024-05-17
    • 文件大小:289792
    • 提供者:zmf
  1. LL(1)fenxi

    0下载:
  2. 编译原理 LL(1)语法分析,预测分析表,分析字符窜-LL(1)yufa fenxi ,bianyi yuanli
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-17
    • 文件大小:109568
    • 提供者:luliang
  1. LL(1)

    0下载:
  2. 编译器语法分析,用于编译器的LL(1)分析-Compiler, syntax analysis, the compiler for LL (1) Analysis
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-17
    • 文件大小:896000
    • 提供者:zhuwentao
  1. LL1_display5.11

    0下载:
  2. 本文描述了针对编译原理课程中LL(1)文法分析过程的演示系统的设计与实现过程。本系统在Visual C++环境中使用MFC类库开发实现。针对高效率和美观实用两个目标,分别设计了前台和后台。前台负责界面显示和用户交互,后台透明地执行LL(1)分析过程的相关操作,为前台提供数据。通过MFC的消息响应机制,将后台功能模块加入到前台相应功能菜单的消息函数中。前台界面提供了和用户交互的菜单,根据演示系统的需求以及LL(1)文法分析过程中的各个步骤
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-17
    • 文件大小:14099456
    • 提供者:
  1. LL(1)Analysis

    0下载:
  2. 编译原理LL(1)分析算法。。。自己写的-Compiler theory LL (1) parsing algorithm. . . Wrote it myself. .
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-17
    • 文件大小:1063936
    • 提供者:chezai
  1. LL1-parser

    0下载:
  2. <编译原理课程设计>利用LL(1)分析算法,手工实现语法分析器-LL (1) parser
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-17
    • 文件大小:11264
    • 提供者:
  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 te
  3. 所属分类:Windows编程

    • 发布日期:2024-05-17
    • 文件大小:16384
    • 提供者:分界线
  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
  3. 所属分类:系统编程

    • 发布日期:2024-05-17
    • 文件大小:177152
    • 提供者:春春
  1. LL(1)

    0下载:
  2. 基于vc++的分来了编程,文件录入所需分析文法,生成预测分析表,输入字符串自动执行并输出分析过程-Based on the vc++ of the points to the programming, file input required analysis of grammar, generate the forecast analysis table, the input string automatically and out
  3. 所属分类:系统编程

    • 发布日期:2024-05-17
    • 文件大小:264192
    • 提供者:zhangxuan
  1. BianYi_B5_LL1

    0下载:
  2. 本次实验使用windows 7的visual C++ 6.0软件,使用mfc编程。LL(1)文法是自上而下的分析方法,首先接受用户输入的一个文法,再分别构造文法中每个非终结符的FIRST、FOLLOW和SELECT集合,根据产生式的SELECT集合判断是否为LL(1)文法,如果是LL(1)文法,再根据SELECT集构造LL(1)分析表。-The experiment uses windows visual C++ 6.0 softwar
  3. 所属分类:系统编程

    • 发布日期:2024-05-17
    • 文件大小:91136
    • 提供者:张龙
  1. 实验二-LL(1)预测分析

    0下载:
  2. LL(1)预测分析,分析表和分析过程的界面友好(LL (1) forecast analysis, analysis table and analysis process friendly interface.)
  3. 所属分类:书籍源码

    • 发布日期:2024-05-17
    • 文件大小:111616
    • 提供者:小艾321
« 1 2 3 4 56 7 8 9 10 ... 24 »

源码中国 www.ymcn.org