搜索资源列表

  1. yufa

    0下载:
  2. 语法分析器,编译原理实验,用递归下降分析法,可分析表达式-Parser, compiler theory test, using recursive descent analysis, the expression can be analyzed
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:355328
    • 提供者:曲鹏
  1. diguixiajiangfenxiqi

    0下载:
  2. 递归下降分析法设计与实现,可以分析E--TG和T--FS-Recursive descent analysis Design and Implementation
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:1024
    • 提供者:王龙
  1. while

    0下载:
  2. do while 递归下降分析法语法语义分析输出为四元式-do while recursive descent analysis grammatical and semantic analysis of the output quaternion type
  3. 所属分类:其他小程序

    • 发布日期:2024-05-21
    • 文件大小:2048
    • 提供者:小明
  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
  3. 所属分类:汇编语言

    • 发布日期:2024-05-21
    • 文件大小:2048
    • 提供者:zeng
  1. b

    0下载:
  2. 递归下降分析器的设计 首先将文法改写成EBNF形式,根据递归下降分析法基本思想编写程序。 -The design of recursive descent parser rewrite first EBNF grammar forms, according to the basic idea recursive descent analysis programming.
  3. 所属分类:VHDL编程

    • 发布日期:2024-05-21
    • 文件大小:55296
    • 提供者:卜丽娜
  1. yufafenxi

    0下载:
  2. 利用递归下降分析程序实现对语法的分析,并输出语法树-Recursive descent parser used to achieve the analysis of grammar and syntax tree output
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:2048
    • 提供者:xuchang
  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 an
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-21
    • 文件大小:3072
    • 提供者:冯景航
  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 d
  3. 所属分类:其它资源

    • 发布日期:2024-05-21
    • 文件大小:4096
    • 提供者:林青松
  1. myPL0

    0下载:
  2. 本次实验使用平台是Microsoft Visual C++6.0,编程语言是C语言,利用递归下降子程序法实现对一个PL/0源程序中的表达式、各种说明语句、赋值语句进行词法分析和语法分析,完成符号表的管理并能实现确定源码中标识符的类型与二维坐标位置,和赋值语句及表达式中间代码的生成,做的一大亮点是程序有着很严格的出错处理子程序,能确定错误类型和错误位置,能检测输入源程序的开头,数值类型的判断,运算错误检查,变量定义重复性的检查,数值类型的
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:209920
    • 提供者:马如龙
  1. RecurGrammer

    0下载:
  2. 用C语言实现的编译原理语法分析中的递归下降分析法-C language compiler with the principle of recursive descent method
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:186368
    • 提供者:
  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. 所属分类:其它资源

    • 发布日期:2024-05-21
    • 文件大小:11264
    • 提供者:贾明军
  1. RecursiveDescentParser

    0下载:
  2. 以下描述算术表达式的LL(1)文法的递归下降分析程序 G[E]: E→TE′ E′→ATE′|ε T→FT′ T′→MFT′|ε F→ (E)|i A→+|- M→*|/-The following descr iption of arithmetic expressions LL (1) recursive descent parser grammar G [E]: E → TE ' E' →
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:4013056
    • 提供者:leelee
  1. RecursiveDescent

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

    • 发布日期:2024-05-21
    • 文件大小:2048
    • 提供者:李延
  1. digui

    0下载:
  2. 递归下降语法分析设计原理与实现技术 完成以下描述算术表达式的LL(1)文法的递归下降分析程序 G[E]: E→TE′ E′→ATE′|ε T→FT′ T′→MFT′|ε F→ (E)|i A→+|- M→*|/ -Recursive descent parsing design principles and implementation techniques to complete the
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:668672
    • 提供者:任红伟
  1. COMPILER

    0下载:
  2. 根据某一文法编制递归下降分析程序,对任意输入的符号串进行分析-According to the preparation of a recursive descent parser grammar, for any analysis of the input string of symbols
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:175104
    • 提供者:晓彬
  1. Grammer_analysis_program

    0下载:
  2. 北邮 编译原理与技术 课程实验 语法分析程序 用C++实现,包含递归下降分析,LL(1),LR(1),YACC的所有源代码及测试输入文件-Compile didactical building principle and technology experiment grammar analysis in c++ program implementation, include recursively to analysis, LL (1)
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:1626112
    • 提供者:停留
  1. submit-ServletTest.tar

    0下载:
  2. XPath Engine,递归下降分析XPath, 并且实现网络爬虫程序和简单的Servlet界面-XPath Engine,Servlet, Web crawler
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-21
    • 文件大小:22528
    • 提供者:Ethan
  1. Compiler

    0下载:
  2. 原创的课程设计的MFC编写的编译原理源程序,内包括sample语言的词法分析,语法分析和部分语义分析,能输出错误信息,语法采用的是递归下降分析方法。内含大量测试代码,方便学习-The compilation of the principle to write MFC source program, including sample in morphology analysis of language, grammar analysis
  3. 所属分类:界面编程

    • 发布日期:2024-05-21
    • 文件大小:5289984
    • 提供者:欧磊
  1. RecursiveDescent

    0下载:
  2. SNL 编译器 java编写 递归下降分析程序-SNL Compiler in java RecursiveDescent resource file
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:8192
    • 提供者:yotan
  1. Infix-to-postfix

    0下载:
  2. 中缀转后缀表达式,编译原理实验。 递归下降分析法实现。-Infix to postfix expression, the compiler of principle experiment. Recursive descent analysis.
  3. 所属分类:Windows编程

    • 发布日期:2024-05-21
    • 文件大小:1024
    • 提供者:黄忠强
« 1 2 3 4 5 6 7 89 10 11 12 13 14 15 »

源码中国 www.ymcn.org