CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 搜索资源 - token

搜索资源列表

  1. 编译原理课程设计报告书

    1下载:
  2. 词法分析中2.实验内容 SAMPLE语言语法分析部分的实现。 输入:词法分析后得到的token.txt文件. 输出:程序中的语法错误的所在的行和列,出错原因. 功能:读入词法分析后得到的TOKEN串,识别不同的语法范畴,并识别其中的 语法错误,同时显示错误所在行,列和错误的原因. -2. SAMPLE experiment as part of language syntax analysis of the achievement. Input : lexical ana
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:102045
    • 提供者:爽爽
  1. S语言词法分析程序

    0下载:
  2. 一、 实验内容 S语言的编译程序的词法分析部分实现 从左到右扫描每行S语言源程序的符号,拼成单词,换成内部表示(token) 二、 实验要求 要求实现编译器的以下功能:  组织源程序的输入  按规则拼写单词,并转换成二元形式  删除空格及无用符号(如回车符,字符常数的引号符等)  发现并定位错误  建立单词表、符号表、常数表等文件 三、 实现方法 数据结构 1、
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:77782
    • 提供者:范鹏
  1. token

    0下载:
  2. 编译器中的词法分析部分,实现了简单的token串的翻译
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:101430
    • 提供者:qq11420
  1. lex

    0下载:
  2. 实现c--语言的词法分析器。将一个C--语言程序分割成token串的序列。处理C--语言的所有token类型。-The realization of c- the language of the lexical analyzer. A C- language program is separated into token strings sequence. To deal with C- the language of all the token types.
  3. 所属分类:Compiler program

    • 发布日期:2017-03-27
    • 文件大小:66440
    • 提供者:lst
  1. token

    0下载:
  2. 一个简单的编译原理的实验——识别标识符与常数-Compilation Principle of a simple experiment- identification identifier with the constant
  3. 所属分类:Compiler program

    • 发布日期:2017-03-25
    • 文件大小:1610
    • 提供者:liangye
  1. lab1

    0下载:
  2. c-词法分析(Lex自动生成) 能自动生成c-语言程序的token序列-c-lexical analysis (Lex automatically generated) can be automatically generated c-language program of the token sequence
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:12716
    • 提供者:
  1. cifafenxi

    0下载:
  2. 编译原理--词法分析 功能: 输入:所给文法的源程序字符串 输出:二元组(syn,token或sum)构成的序列-Compilation Principle- lexical analysis functions: Input: the grammar of the source code to the output string: Binary Group (syn, token or sum) constitute a sequence
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:8646
    • 提供者:李小玲
  1. Lex

    0下载:
  2. 基于C++的编译器词法分析模块生成器[Lex],可使用Visual C++ 2003编译,分析词法定义文件,产生确定自动机[DFA]和对应词法的分析代码,使用此代码可解析C++源码并生成TOKEN序列-Based on C++ compiler lexical analysis module generator [Lex], can use the Visual C++ 2003 to compile, analyze lexical definition file, generated to
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:268613
    • 提供者:secret
  1. cifafenxiqi

    0下载:
  2. 实现一个词法分析器,词法分析程序的主要任务是从左到右扫描每行源程序,拼成单词,换成统一的内部表示 (token)输出,送给语法分析器。具体包括: –组织源程序的输入; –按规则拼单词,并转换成二元形式; –滤掉空白符,跳过注释、换行符及一些无用的符号(如字符常数的引号) (实验一已完成); –进行行列计数,用于指出出错的行列号,并复制出错部分; –列表打印源程序; –发现并定位词法错误; –生成符号表。token 文件和符号表用作语法分析的输入部分。
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:28856
    • 提供者:何娜
  1. C

    0下载:
  2. 定义C语言或其子集的单词并给出编号,根据给定的语言子集构造词法分析器,从输入的源程序中,识别出各个具有独立意义的单词,即基本保留字、标识符、常量、运算符、分隔符五大类。并依次输出各个单词的内部编码及单词符号自身值(遇到错误时可显示“Error”,然后跳过错误部分继续显示),要求输出以文件形式存放的Token串。-The definition of C language or a subset of the word and give numbers, according to a subset
  3. 所属分类:assembly language

    • 发布日期:2017-03-29
    • 文件大小:5390
    • 提供者:xiaoding
  1. LexicalAnalyzer

    0下载:
  2. 词法分析器,源代码用文件输入,TOKEN序列文件输出-Lexical analyzer,the source code to use file input,TOKEN sequence file output
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:192617
    • 提供者:逍遥一心
  1. Scanner

    0下载:
  2. 手工完成C语言编写的C-词法分析器,列出源代码以及提取出的token串-Manually written in C language C-lexical analyzer, listing the source code, and extract the token string
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:22542
    • 提供者:张龙
  1. LexicalAnalysis

    0下载:
  2. 词法分析源码:从左到右扫描每行该语言源程序的符号,拼成单词,换成统一的内部表示(token),送给语法分析程序。-Lexical analysis Source: from left to right scan every line in the source language of symbols, spell the word, and replaced with a unified internal representation (token), sent to the parser.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:1394
    • 提供者:zhangxueli
  1. token

    0下载:
  2. 词法分析程序的功能 输入:源程序 输出:二元组(词法记号,属性值/其在符号表中的位置)构成的序列。 例如:对源程序 x:=5 if (x>0) then x:=2*x+1/3 else x:=2/x # 经词法分析后输出如下序列: (10,’x’)(18, :=) (11,5) (26, ) (2, if ) (27,( )-Function of lexical analysis program input: source output: pair (lex
  3. 所属分类:Compiler program

    • 发布日期:2017-03-23
    • 文件大小:3290
    • 提供者:
  1. word

    0下载:
  2. 词法分析器 token代码 流程图 实验结果-词法分析器
  3. 所属分类:Compiler program

    • 发布日期:2017-04-24
    • 文件大小:66677
    • 提供者:zhangxia
  1. token

    0下载:
  2. 简单词法分析 从文件中读取要编译的文件 输出结果到输出文件中,程序中的输入输出文件需要更改名后方可使用-token
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:2115
    • 提供者:laoluo
  1. token

    0下载:
  2. 词法分析是编译器中的重要部分,为方便以后的语法分析以及予以分析,用于编译器中的词法分析-compiler for token analysis
  3. 所属分类:Compiler program

    • 发布日期:2017-03-26
    • 文件大小:2751
    • 提供者:张文敏
  1. token

    0下载:
  2. Token Getter with C.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-13
    • 文件大小:2516
    • 提供者:Jaeseong
  1. token

    0下载:
  2. 识别一段代码中的token,能够分辨出Identifier,Symbol,number和关键字-A code identifying the token
  3. 所属分类:Compiler program

    • 发布日期:2017-03-21
    • 文件大小:935116
    • 提供者:周宇航
  1. 阿里元获取token与合成语音

    0下载:
  2. 阿里云获取token与合成语音.获取token与合成语音易语言源码,阿里云文字合成语音
  3. 所属分类:易语言编程

« 12 3 4 5 6 7 »
搜珍网 www.dssz.com