CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 递归下降 语法分析 程序

搜索资源列表

  1. yufafenxi

    0下载:
  2. 编制一个递归下降分析程序,实现对词法分析程序所提供的单词序列的语法检查和结构分析。 利用C语言编制递归下降分析程序,并对简单语言进行语法分析。 -The preparation of a recursive descent parser, lexical analysis program to realize the word provided by the syntax check sequence and structure analysis. Use of C language c
  3. 所属分类:assembly language

    • 发布日期:2017-04-13
    • 文件大小:2169
    • 提供者:zeng
  1. DoWhileRecursiveDescent

    0下载:
  2. 设计一个DO-WHILE循环语句的词法﹑语法及语义分析程序,语法分析选择递归下降法,采用用语法制导翻译输出中间代码四元式。通过设计、编制、调试一个DO-WHILE循环语句的语法及语义分析程序,加深对语法及语义分析原理的理解,并实现词法分析程序对单词序列的词法检查和分析。-Design a DO-WHILE loop syntax and semantics of lexical analysis programs ﹑, recursive descent parsing options, use
  3. 所属分类:Compiler program

    • 发布日期:2017-04-09
    • 文件大小:1775015
    • 提供者:朱良
  1. Compilers

    0下载:
  2. 本人编写的一个采用递归下降法实现了PL0语言的编译器,程序分三部分:词法分析、语法分析、模拟执行器。运用有限状态自动机的方式实现,比传统的if-else方式更加简洁清晰。-Achieved by recursive descent PL0 language compiler, the program divided into three parts: lexical analysis, syntax analysis, simulation of the actuator. Finite sta
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:28517
    • 提供者:hczhang
  1. yufafenxiqi

    0下载:
  2. 加深对语法分析器工作过程的理解;加强对递归下降法实现语法分析程序的掌握;能够采用一种编程语言实现简单的语法分析程序;能够使用自己编写的分析程序对简单的程序段进行语法翻译-Deepen the understanding of the work process parser step recursive descent parser to achieve mastery able to use a simple programming language parser to use their
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:177645
    • 提供者:岳广
  1. yufa

    0下载:
  2. 编制一个递归下降分析程序,实现对词法分析程序所提供的单词序列的语法检查和结构分析。 利用C语言编制递归下降分析程序,并对简单语言进行语法分析。 -The preparation of a recursive descent parser, lexical analyzer to achieve the sequence of words provided by the syntax check and structural analysis. Use of C language co
  3. 所属分类:数据结构常用算法

    • 发布日期:2017-04-09
    • 文件大小:3046
    • 提供者:冯景航
  1. yuyifenxi

    0下载:
  2. 这是一个简单的包含词法、语法、语义分析的程序:递归下降分析.h 和递 归下降分析.cpp。 实现的基本原理是自顶向下分析,单遍扫描,以语法分析为 核心,调用词法分析,并实现语义分析。-This is a simple include lexical, syntax, semantic analysis of the program: Analysis of recursive descent. H and recursive descent analysis. Cpp. The basi
  3. 所属分类:汇编语言

    • 发布日期:2017-04-05
    • 文件大小:4594
    • 提供者:林青松
  1. Parser

    0下载:
  2. 编制一个递归下降分析程序,实现对词法分析程序所提供的单词序列的语法检查和结构分析-The preparation of a recursive descent parser, lexical analyzer to achieve the sequence of words provided by the syntax check and structural analysis
  3. 所属分类:SCSI/ASPI

    • 发布日期:2017-04-23
    • 文件大小:10985
    • 提供者:贾明军
  1. RecursiveDescent

    0下载:
  2. 编译原理语法分析程序源代码 递归下降分析法源代码,绝对成功-Compiler theory parser source code analysis source code for recursive descent, absolute success
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:1761
    • 提供者:李延
  1. Tiny-P-syntax-analysis

    0下载:
  2. 利用递归下降法实现Tiny+的语法分析,语义分析与及三地址码生成。语法分析能输出生成的语法树,语义分析创建符号表和变量类型检验,代码生成是生成三地址码。要求分析程序能给予出一定的错误提示-Recursive descent method to achieve Tiny+ syntax analysis, semantic analysis and three-address code generation. Syntax analysis can Output generated synta
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:580546
    • 提供者:小罗
  1. 111

    0下载:
  2. 编译原理实验 语法分析程序源代码 递归下降法-Principle experiment parser compiler source code recursive descent
  3. 所属分类:Compiler program

    • 发布日期:2017-04-11
    • 文件大小:1297
    • 提供者:张小楠
  1. 3LL(1)

    0下载:
  2. 编译原理上机—语法分析1 目的:熟练掌握自上而下的语法分析方法,并能用C++程序实现。 要求: 1. 使用固定的文法 2. 对于任意给定的输入串(词法记号流)进行语法分析,递归下降方法和非递归预测分析方法可以任选其一来实现。 3. 要有一定的错误处理功能。即对错误能提示,并且能在一定程度上忽略尽量少的记号来进行接下来的分析。可以参考书上介绍的同步记号集合来处理。 可能的出错情况:idid*id, id**id, (id+id, +id*+id …… 4. 输入串以#结
  3. 所属分类:Compiler program

    • 发布日期:2017-04-07
    • 文件大小:18677
    • 提供者:girlatsnow
  1. Syntax-analyzer

    0下载:
  2. 编制递归下降法的语法分析器 通过设计、编制、调试一个典型的语法分析程序,能识别由加+、乘*、括号()、操作数所组成的算术表达式,其文法如下: E→TE E →+TE ∣ε T→FT T →*FT ∣ε F→(E)∣i 1.程序功能(举例) 输入:#i1*(i2+i3)# 输出:SUCCESS 输入:# i1*( i2+i3# 输出:FOUND ERROR -Recursive Descent parser prepared by the des
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:465348
    • 提供者:张映生
  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. diguifenxi

    0下载:
  2. 编译原理小程序:用递归下降分析法进行语法分析 对输入的表达式进行自顶向下分析-Compiler theory applet: recursive descent parsing by top-down analysis of the input expression
  3. 所属分类:Compiler program

    • 发布日期:2017-11-22
    • 文件大小:5698
    • 提供者:kk
  1. ly

    0下载:
  2. 编制一个递归下降分析程序,实现对词法分析程序所提供的单词序列的语法检查和结构分析。-Preparation of a recursive descent analytical procedures the word lexical analysis program syntax checking sequence and structure analysis.
  3. 所属分类:assembly language

    • 发布日期:2017-11-24
    • 文件大小:312904
    • 提供者:宋志伟
  1. compiler

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

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

    0下载:
  2.  一个递归下降分析程序,实现对词法分析程序所提供的单词序列的语法检查和结构分析-Preparation of a recursive descent parser, lexical analyzer to achieve word sequence provided by the syntax checking and structural analysis.
  3. 所属分类:IT Hero

    • 发布日期:2017-11-13
    • 文件大小:4296566
    • 提供者:徐徐
  1. To

    0下载:
  2.   利用C语言编制递归下降分析程序,并对简单语言进行语法分析。-The use of C language prepared recursive descent parser, and simple language parsing.
  3. 所属分类:software engineering

    • 发布日期:2017-11-22
    • 文件大小:3921
    • 提供者:徐徐
  1. SNL_Example

    0下载:
  2. 递归下降的SNL词法分析和语法分析程序,此法结果单独输出到一个文本中-The SNL recursive descent parser and lexical analysis, this method results in a single output to a text
  3. 所属分类:Other systems

    • 发布日期:2017-04-08
    • 文件大小:694858
    • 提供者:陶克
  1. shiyan1

    0下载:
  2. 运用递归下降子程序法,实现整数四则运算表达式的语法分析程序。如果输入的表达式分析正确,则输出表示分析正确的信息;否则,输出表示分析错误的信息。-Subroutine using recursive descent method to achieve parser integer arithmetic expressions. If the expression entered the analysis is correct, then the output indicates the corre
  3. 所属分类:software engineering

    • 发布日期:2017-04-10
    • 文件大小:598
    • 提供者:汪祥
« 1 2 3 45 »
搜珍网 www.dssz.com