CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 编译器/词法分析 搜索资源 - c/c 算法

搜索资源列表

  1. bianyiyuanli.rar

    0下载:
  2. 一. 实验目的: 设计、编写和调试一个具体的词法分析程序,加深对词法分析理论和自动词法分析工具的理解、实践和掌握。 二. 实验要求: ① 学习和理解正则表达式理论,写出C—语言的记号的完整的正则表达式;(适当使用正则定义) ② 学习和理解有限机理论,根据前面的正则表达式,用基于经验的方法画出C—语言的记的DFA图; ③ 用基于DFA图的算法编写C—语言的词法分析程序; ④ 学习词法分析程序的自动生成工具,使用LEX工具实现C—语言的词法分析程序.
  3. 所属分类:编译器/词法分析

    • 发布日期:
    • 文件大小:144.14kb
    • 提供者:
  1. 编译原理及实践

    1下载:
  2. 目      录 译者序 前言 第1章   概论 1 1.1   为什么要用编译器 2 1.2   与编译器相关的程序 3 1.3   翻译步骤 5 1.4   编译器中的主要数据结构 8 1.5   编译器结构中的其他问题 10 1.6 &
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-04-25
    • 文件大小:7.26mb
    • 提供者:wesong
  1. 语法词法分析

    1下载:
  2. 一个c语言写的词法分析器和语法分析器的简单算法,适用于编译原理的初学者-a written language lexical analyzer and parser simple algorithms, compiler theory applies to the beginners
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:4.38kb
    • 提供者:吴绪林
  1. 词法分析器-编译

    0下载:
  2. 基于c语言编写的关于编译中的词法分析算法的编程-based on the language compiler of lexical analysis algorithm programming
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:50.97kb
    • 提供者:贾利新
  1. cweb.tar

    0下载:
  2. 著名算法大师高爷爷设计的语言。此语言结合了Tex和C,在写源代码的时候,详细注释,用一个工具单独在源码里面提取C代码编译,还有一个工具单独在源码里面提取Tex源码编译生成文档-famous masters Grandpa algorithm design language. This language combines Tex and C, writing source code, detailed notes, with a separate tool from inside the C so
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:218.7kb
    • 提供者:梁飞
  1. base64decoder

    0下载:
  2. Base64 decoder for Visual C++, 所谓的Base64 , 是密码学中的一门算法 , 在计算机界来说 , 常常运用在EMAIL传送之上-Base64 decoder for Visual C, the so-called Base64. Cryptography is the one algorithm, in the computer industry, for example, is often used in transmission above EMAIL
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:35.83kb
    • 提供者:陈志文
  1. Cprom

    0下载:
  2. c语言程序,一些常用的算法,来源于网络收集,希望大家指教。-c language program, some of the commonly used algorithms, and from the network to collect, we hope the exhibitions.
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:230.01kb
    • 提供者:遥遥
  1. Lex_Yacc_Parser

    2下载:
  2. 语法分析器lex和词法分析器yacc的C++语言实现 1.Lex (1)Lex输入文件的解析 (2)正规表达式的解析 (3)一个正规表达式到NFA的转换算法实现 (4)多个NFA的合并 (5)NFA的确定化和最小化算法实现 (6)返回状态与返回内容的对应 2.Yacc (1)Yacc输入文件的解析 (2)上下文无关文法到对应LR(1)文法的下推自动机的构造 (3)LR(1)文法的下推自动机到相应分析表的构造 (4)LR(1)总控程序的构造(查表程
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:40.52kb
    • 提供者:尤冉
  1. C++cifafenxiqi

    0下载:
  2. 针对C++的简单词法分析器,局限性较大,算法简单,易懂,导入词法文件,输出分析结果-against C simple lexical analyzer and limitations larger, the algorithm is simple, understandable, import documents morphology, Output analysis
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:354.56kb
    • 提供者:Norman
  1. c

    0下载:
  2. 编译原理 :预测分析,算法分析,DN转换c是实现
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:10.75kb
    • 提供者:朱清和
  1. 编译原理---算浮优先算法

    0下载:
  2. 简单介绍一下,整个工程分为5个文件:Main.c ----- 程序的入口点,其实很简单,就是调用两个函数。Global.h ----- 定义了一些全局变量及宏Parse.h ----- 语法分析器的主要算法Prece.h ----- 定义和实现了一些关于优先级的操作Stack.h ----- 定义和实现了一个栈及其操作编译的时候只要用TC2.0或者WinTC打开Main.c文件进行编译就好了。如发现有Bug请在这里贴出来或者把修改后的代码跟帖在这里:)总之,这个工程仅仅是一个简单示例,告诉大家怎
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:11.82kb
    • 提供者:李雷
  1. ll(1)YUFAPANDUAN

    1下载:
  2. 学编译原理时写的一个语法分析程序 分类:C/C++技术交流 一.[目的要求] ① 对输入文法,由程序自动构造FIRST FOLLOW集 ② 对输入文法,由程序自动生成它的LL(1)分析表; ③ 对于给定的输入串,应能判断识别该串是否为给定文法的句型。 二.[题目分析] 该程序可分为如下几步: (1)读入文法 (2)判断正误 (3)若无误,判断是否为LL(1)文法 (4)若是,构造分析表; (5)由总控算法判断输入符
  3. 所属分类:Compiler program

    • 发布日期:2017-03-23
    • 文件大小:4.67kb
    • 提供者:liangye
  1. C

    1下载:
  2. C#算术表达式求值我是的算法核心是逆波兰式.还有就是w3eval这个算术表达式求值算法很不错.但有一种表达式它会报错.我想这是一个BUG:w3eavl不能计算"-(3+5)"的值.或者类似的计算式.-C# Arithmetic expressions evaluate my algorithm is the core of Reverse Polish-style. W3eval there is the arithmetic expression evaluation algorithm is
  3. 所属分类:Compiler program

    • 发布日期:2017-04-15
    • 文件大小:6.57kb
    • 提供者:箱子
  1. c-viterbi

    0下载:
  2. 这是(2,1,7)viterbi编码和译码的c语言代码 译码中是用基二算法实现的,运行时首先要在c盘中建立一个输入文件和一个输出文件。-This is the [2,1,7] viterbi encoding and decoding of the c language code decoding is to use the base implementation of the second algorithm, run-time we must first set up in c aft
  3. 所属分类:Compiler program

    • 发布日期:2017-04-13
    • 文件大小:2.1kb
    • 提供者:张晓勃
  1. paser

    0下载:
  2. 一个简单的语法分析器实现,采用的是自顶向下的算法,结构清晰,容易理解,适合初学者学习。-Parser A simple realization is based on top-down algorithm, the structure of clear and easy to understand for beginners to learn.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:258.6kb
    • 提供者:罗兴
  1. Operator_priority

    0下载:
  2. 自动的编译原理算符优先算法(具有自动算FIRST集,FOLLOW集和算符优先表,)编译后为exe,可输入参数执行环境为vs2005 语言C#-Automatic Compilation Principle operator priority algorithm (with automatic calculation FIRST sets, FOLLOW sets, and operator priority table,) compiled for the exe, the implementa
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:32.92kb
    • 提供者:高飞
  1. c

    0下载:
  2. 一个关于概率算法的计算程序,请大家一同分享,如过有高手指点将非常荣幸-this is a program code about algebra
  3. 所属分类:Compiler program

    • 发布日期:2017-03-22
    • 文件大小:3.08kb
    • 提供者:姜海涛
  1. capture

    0下载:
  2. 这是一个图像超分辨率处理的程序,采用动态确定阶数的算法,根据空间距离和梯度信息限制的双重制约,能够很好的提高图像的分辨率。-This is an image super-resolution processing of the procedure for dynamically determining the order of the algorithm, distance and gradient information based on spatial constraints of the
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:78.73kb
    • 提供者:puma
  1. C-Prepared-Lexical-Analyzer

    0下载:
  2. 词法分析器。建立分析器模型框架,根据分析器的状态转换图算法以及算法构造-Establish analyzer model framework, according to the analysis of the state transition figure algorithms structure
  3. 所属分类:Compiler program

    • 发布日期:2017-04-14
    • 文件大小:2.84kb
    • 提供者:yzz
  1. Research-of-Visualization-of-C

    0下载:
  2. 分析C程序的函数调用机制,阐述函数调用可视化实现技术,并利用GNU编译器工具链跟踪函数,对函数调用进行可视化展示,从而有助于对复杂函数调用特别是递归调用中的算法设计、栈区使用、代码优化等内容的理解。- The thesis analyses the mechanism of function call in C program,explains the realization technology of Visualization of function call,and displays th
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:168.68kb
    • 提供者:李飞
« 12 3 »
搜珍网 www.dssz.com