CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - LEXical compiler

搜索资源列表

  1. yufafenxi

    0下载:
  2. 编译原理语法分析。自顶向下分析语法,首先要分析词法是否正确,若错误有错误提示,若没有进行语法分析自顶向下匹配字符串,显示匹配成功,或者失败结果。-Parsing compiler theory. Top-down analysis of grammar, lexical analysis is correct first, if an error has error, if there is no top-down parsing strings match, display matching
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:1242
    • 提供者:相小果
  1. M_Tiny

    0下载:
  2. 编译原理中的词法分析程序,对特定的txt文件进行词法分析。-Compiler theory lexical analysis procedures, txt files to specific lexical analysis.
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:2827
    • 提供者:Wisen
  1. testword

    0下载:
  2. 用c#编写的编译原理简单的小实验词法分析器-Written by c# compiler theory lexical analyzer simple little experiment
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:43788
    • 提供者:yimo
  1. pl0_compiler

    0下载:
  2. 一个PASCAL语言子集(PL/0)编译器的设计与实现,包括词法,语法,语义,中间代码,优化。输入PLO文件,自动运行程序,并提示错误。-A subset of the PASCAL language (PL/0) and implementation, including lexical, grammatical, semantic, intermediate code in the compiler design, optimization. Enter the PLO file, the
  3. 所属分类:Other windows programs

    • 发布日期:2017-01-02
    • 文件大小:366592
    • 提供者:李人治
  1. LL

    0下载:
  2. 利用LL分析方法实现的语法分析器。语法分析器(Parser)通常是作为编译器或解释器的组件出现的,它的作用是进行语法检查、并构建由输入的单词组成的数据结构(一般是语法分析树、抽象语法树等层次化的数据结构)。语法分析器通常使用一个独立的词法分析器从输入字符流中分离出一个个的“单词”,并将单词流作为其输入。-LL-implemented method of analysis utilizing the parser. Parser (Parser) is often used as a compil
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:235678
    • 提供者:周慕白
  1. LR

    0下载:
  2. 利用LR分析方法实现的语法分析器。语法分析器(Parser)通常是作为编译器或解释器的组件出现的,它的作用是进行语法检查、并构建由输入的单词组成的数据结构(一般是语法分析树、抽象语法树等层次化的数据结构)。语法分析器通常使用一个独立的词法分析器从输入字符流中分离出一个个的“单词”,并将单词流作为其输入。-LR-implemented method of analysis utilizing the parser. Parser (Parser) is often used as a compil
  3. 所属分类:Other systems

    • 发布日期:2017-04-30
    • 文件大小:237254
    • 提供者:周慕白
  1. Calculator

    0下载:
  2. 实现了词法分析、语法分析、语义分析功能,完成了对任意计算式求职算法。代码简单明了,可加深对编译原理的学习和理解。-Achieve a lexical analysis, syntax analysis, semantic analysis, completed the formula for any job search algorithm. Code simple, compiler theory can deepen learning and understanding.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-30
    • 文件大小:153190
    • 提供者:haungyzh
  1. cifafenxi

    0下载:
  2. 词法分析程序,用于简易编译器第一步,将源代码分解成单词。-Lexical analysis program, the first step for the simple compiler, the source code is broken down into words.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-28
    • 文件大小:212905
    • 提供者:张宏达
  1. bianyiyuanli

    0下载:
  2. 编译原理(第二版)张素琴 吕映芝等著 实验:简单词法分析程序设计- Compiler theory (second edition) Lvying Zhi Qin Zhang wait Experiment: Simple lexical analysis program design
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:330037
    • 提供者:Allen 王
  1. 11003070108

    0下载:
  2. 能实现基本编译原理算法演示,如LL1文法、算符优先、词法分析、语法分析等-To achieve a basic compiler theory algorithm demonstration, such as LL1 grammar, operator precedence, lexical analysis, parsing, etc.
  3. 所属分类:Other systems

    • 发布日期:2017-05-03
    • 文件大小:577055
    • 提供者:万静
  1. analyse

    0下载:
  2. 来自课程实验,属于编译原理程序,能进行词法分析,结果比较清晰-From the course of experiments, belonging to the compiler principle, can carry out the lexical analysis, the results are clear
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:1223
    • 提供者:陆善荣
  1. CompilerCminus

    0下载:
  2. 这个文件是编译原理课程设计的实验代码,这段代码中包括了词法分析以及语义树的生成,工程的话用vs2013打开,如果版本低的话,直接把里面的头文件与源文件拷出来在相关的c语言开发环境里建个新的工程就行了,里面有一个例子,直接跑就行了。-This file is experimental code compiler theory of curriculum design, this code is included in the lexical analysis and semantic tree g
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-07
    • 文件大小:1247282
    • 提供者:
  1. lex

    0下载:
  2. 编译原理,词法分析器的实现,使用的语言是C语言,在LINux环境下运行没有问题.- Compiler theory lexical analyzer to achieve, the language used is C language environment in LINux run without problems.
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:1434
    • 提供者:
  1. 1

    0下载:
  2. 编译原理关于词法分析器的c语言编译代码,-Compiler theory lexical analysis
  3. 所属分类:Other systems

    • 发布日期:2017-04-30
    • 文件大小:276127
    • 提供者:陈蔓菲
  1. cifafenxi

    0下载:
  2. vs2015编译的词法分析,需要在运行文件的同目录下有个skh.c文件作为词法分析的文件-Vs2015 compiler lexical analysis, the need to have a EXE file in the same directory as the skh.c file as a lexical analysis of the document
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-16
    • 文件大小:3791209
    • 提供者:hcc
  1. bianyiyuanli1120310528

    0下载:
  2. 编译原理大作业,包含所有的流程,从词法,语法,语义,最后到目标代码-Compiler principles large operations, including all processes, the lexical, syntactic, semantic, and finally to the object code
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-04
    • 文件大小:394920
    • 提供者:陈向军
  1. test

    0下载:
  2. 编译原理用C++编写的词法分析器,用到四元数,分析语句-Compiler theory with C++ written lexical analyzer used quaternion analysis statement
  3. 所属分类:Other systems

    • 发布日期:2017-05-05
    • 文件大小:224859
    • 提供者:cmy
  1. cimafenxi

    0下载:
  2. 编译原理的词法分析,有简单的词法分析程序,能准确运行- 编译原理的词法分析,有简单的词法分析程序,能准确运行 Compiler theory lexical analysis, a simple lexical analysis procedures, can accurately run
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-05
    • 文件大小:80692
    • 提供者:李鼎
  1. Lexicalanalyzer

    0下载:
  2. 简单的词法分析器,能够将源代码翻译成记号流,对于编译的理解和实现有帮助。-A simple Lexical analyzer, it can be helpful for understanding and implementation of compiler
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-14
    • 文件大小:2552832
    • 提供者:Zhang
  1. 编译原理

    0下载:
  2. 编译原理是计算机专业的一门重要专业课,旨在介绍编译程序构造的一般原理和基本方法。内容包括语言和文法、词法分析、语法分析、语法制导翻译、中间代码生成、存储管理、代码优化和目标代码生成。 编译原理是计算机专业设置的一门重要的专业课程。(The principle of compilation is an important specialized course in computer science, which aims to introduce the general principles an
  3. 所属分类:其他

    • 发布日期:2017-12-24
    • 文件大小:2283520
    • 提供者:alili
« 1 2 3 45 »
搜珍网 www.dssz.com