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

搜索资源列表

  1. lm编译原理的语法分析

    1下载:
  2. 他是语义分析的前端,example是分析的程序实例,token中放置的是token字。既有词法分析又有语法分析。-he is the front-end semantic analysis, example is the analysis of examples of procedures, token placing the token character. Both lexical analysis has syntax analysis.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:3797
    • 提供者:马木木
  1. token

    0下载:
  2. 使用面向对象方法完成“快速拼写检查程序”的分析、设计和实现过程。快速拼写检查程序基本要求说明如下: 1.进行拼写检查的文件以文本文件形式存储于外存上;2.只检查文件中英文单词的拼写错误;3.单词是用字母(a…z或A…Z)定义,任一非字母字符作为分隔符;4.判断单词拼写正误的依据是词典,词典以文本文件形式存放于外存上;5.词典文件第1行为词典的名称,以后每一行存放一个单词;6.输出结果以文本文件形式存储,其格式为:第1行:被拼写检查的文件名 + 词典名 第2行后的每一行: 出错单词 位于第x行7.
  3. 所属分类:嵌入式/单片机编程

    • 发布日期:2008-10-13
    • 文件大小:8857
    • 提供者:罗春威
  1. Lexical-analysis

    0下载:
  2. 词法分析是指将我们编写的文本代码流解析为一个一个的记号,分析得到的记号以供后续语法分析使用。词法分析器的工作是低级别的分析:将字符或者字符序列转化成记号.。-Lexical analysis stream parsing the text code that we write as a token analysis of the resulting mark for subsequent parsing use. Lexical analyzer' s job is low-level a
  3. 所属分类:JavaScript

    • 发布日期:2017-11-05
    • 文件大小:100730
    • 提供者:锡睿
  1. cifafenxiqi

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

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

    0下载:
  2. 词法分析的主要任务是:从左到右逐个字符地扫描源程序,产生一个个单词(Token),同时检查源程序中的词法错误。执行词法分析的程序称为词法分析程序或扫描程序(Scanner)。-The main task of lexical analysis: one by one character to scan from left to right source to generate a one word (Token), also check the source of lexical errors.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:2862
    • 提供者:windia
  1. c-sharp-bianyi

    0下载:
  2. 做了词法分析 输出token 以及字符表 能读入和编辑文件-Do lexical analysis and character sheet output token can read and edit documents
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:284627
    • 提供者:xixilike
  1. bysy

    0下载:
  2. 词法分析的主要任务是:从左到右逐个字符地扫描源程序,产生一个个单词(Token),同时检查源程序中的词法错误。执行词法分析的程序称为词法分析程序或扫描程序(Scanner)。-Lexical analysis of the main tasks are: to scan source code character by character from left to right, resulting in one word (Token), also check the source of lex
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:11929
    • 提供者:第三方
  1. 2

    0下载:
  2. ,词法分析器,可以识别实数,标志符ID,关键字(if elseif while do while for and or),Token串.语义分析,遇到合法的字符输出,遇到不合法的字符提示不合法-Lexical analyzer can identify the real number, the identifier ID, keyword (the if elseif while do while for and or), Token string. Semantic analysis, met
  3. 所属分类:Other systems

    • 发布日期:2017-11-26
    • 文件大小:838
    • 提供者:赵嘉
  1. strtok

    0下载:
  2. strtok(char s[], const char *delim) 用来将字符串分割成一个个片段。参数s指向欲分割的字符串,参数delim则为分割字符串中包含的所有字符。当strtok()在参数s的字符串中发现参数delim中包涵的分割字符时,则会将该字符改为\0 字符。在第一次调用时,strtok()必需给予参数s字符串,往后的调用则将参数s设置成NULL。每次调用成功则返回指向被分割出片段的指针。-strtok- break down a string into tokens (ANSI
  3. 所属分类:Embeded-SCM Develop

    • 发布日期:2017-12-08
    • 文件大小:4288
    • 提供者:roc
  1. lex

    0下载:
  2. 词法分析器又称扫描器。词法分析是指将我们编写的文本代码流解析为一个一个的记号,分析得到的记号以供后续语法分析使用。词法分析器的工作是低级别的分析:将字符或者字符序列转化成记号。-Lexical analyzer, also known as scanners. Lexical analysis refers to the text of the code we write flow analysis for a token one, analyze the resulting syntax no
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:256304
    • 提供者:周慕白
  1. lab1(2)

    0下载:
  2. The main job of the scanner is to identify and return the next token. The value to be returned includes: the token "name" (e.g., INTLITERAL). Token names are defined in the file sym.java the line number in the input file on which the toke
  3. 所属分类:Java编程

    • 发布日期:2017-12-16
    • 文件大小:13312
    • 提供者:旋子酱
  1. 编译原理词法分析器

    0下载:
  2. 2.1 待分析的简单的词法 (1)关键字: begin if then while do end 所有的关键字都是小写。 (2)运算符和界符 : = + - * / < <= <> > >= = ; ( ) # (3)其他单词是标识符(ID)和整型常数(SUM),通过以下正规式定义: ID = letter (letter | digit)* NUM = digit digit* (4)空格有空白、制表符
  3. 所属分类:编译器/解释器

    • 发布日期:2018-01-07
    • 文件大小:3268608
    • 提供者:帅帅的风
  1. 词法分析

    1下载:
  2. 词法分析(英语:lexical analysis)是计算机科学中将字符序列转换为单词(Token)序列的过程。进行词法分析的程序或者函数叫作词法分析器(Lexical analyzer,简称Lexer),也叫扫描器(Scanner)。(Lexical analysis is the process of converting character sequence into token sequence in computer science. The program or function fo
  3. 所属分类:编译器/解释器

    • 发布日期:2020-12-09
    • 文件大小:1024
    • 提供者:ffffffx
搜珍网 www.dssz.com