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

搜索资源列表

  1. hanzishibie_c

    0下载:
  2. mydate.dat为字库 先点击file, 点open,读入字库 学习时字库自动保存 已有键盘字符,字母,数字 和简单汉字 如要识别复杂汉字,请先用学习功能-mydate.dat Click on the first character of the file, open spots, Reading into the character study of character has been preserved automatic keyboard characters,
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:81.25kb
    • 提供者:zhouwei
  1. cifafenxi

    0下载:
  2. 能够识别数字,字符及关键字的一个简单的词法分析器。
  3. 所属分类:编译器/词法分析

    • 发布日期:2014-01-17
    • 文件大小:171.91kb
    • 提供者:孑遥
  1. compiler

    0下载:
  2. 这个程序是编译程序的一部分,用于阅读源代码,并识别其中的标记符、关键词(以字母开头)、数(以数字开头)。其中数按其是否以0开头分为10进制和8/16进制,而16进制的第二位是“x”。将上述所有识别的内容分类显示在屏幕和文件result.txt中。 函数scan负责整个识别、输出过程,compare1负责识别单个字符,compare2识别词。
  3. 所属分类:编译器/词法分析

    • 发布日期:2014-01-17
    • 文件大小:1.3kb
    • 提供者:Fayer Michael
  1. c++cffxq

    0下载:
  2. 一个可以识别C语言中标识符,关健字,运算符和各种数字的词法分析器.用VC6.0编写的. 下面是主要代码- May distinguish in the C language the identifier, Guan Jianzi, the operator and each kind of digital morphology analyzer Compiles with VC6.0 Under is the main code..
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:4.01kb
    • 提供者:张旧
  1. WANG词法分析-编译

    0下载:
  2. 一个简单的词法分析器,1代表字符,2代表关键字(命令字),4带表算符界符, 注:要把wangs.txt这个文件放在桌面上,然后在这个TXT里写上你要识别的语句。然后保存后关毕,在运行WANG词法分析.EXE进行词法分析。 完成识别后,会在相应的词面前出现以上代号。暂不能对数字进行识别。因为在某种请况下数字也可表是为字符……稍有困难,但完成老师的针对程序段:area=b+c*d。那简直是小菜一碟。-a simple lexical analyzer, a representative charac
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:11.26kb
    • 提供者:linlins
  1. wordcheck

    0下载:
  2. 一个简单的C词法分析器 能识别数字,标志符(关键字,变量)和一些运算符.-a simple C lexical analyzer can identify the number, identifier (keyword, variable), and some Operators.
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:2.17kb
    • 提供者:野牙
  1. 递归下降分析器

    0下载:
  2. 目的】 使用递归子程序法设计一个语法分析程序,理解自顶向下分析方法的原理,掌握手工编写语法分析程序的方法。 【要求】 1、使用递归下降分析算法分析表达式文法: exp ::= exp addop term | term addop ::= + | - term ::= term mulop factor | factor mulop ::= * | / factor ::= (exp) | number 其中number可以是多位的十进制数字串(整数即可),因此这里还需要一个小的词法分析器来得到
  3. 所属分类:编译器/词法分析

  1. lexical.rar

    0下载:
  2. 词法分析器,该程序可以识别数字,标识符,运算符,关键字,提取出各个单词,Lexical analyzer, the program can identify the number of identifiers, operators, keywords, extracted all the words
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:9.64kb
    • 提供者:ansir
  1. 词法分析

    0下载:
  2. 编译原理基础课程,词法分析编写,可识别符号,数字,关键字等
  3. 所属分类:编译器/词法分析

  1. 15102856134

    0下载:
  2. 词法分析器,本程序是C语言的一个子集的词法分析程序,只能识别整型数字和部分关键字和部分符号。-Lexical analyzer, the C language program is a subset of the lexical analysis procedure to identify only integer numbers, and some parts of keywords and symbols.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-27
    • 文件大小:122.16kb
    • 提供者:jervis
  1. pl_0_word

    0下载:
  2. PL/0 语言的编译程序的一个部件,词法分析器。读入由PL/0语言编写的源代码,识别其中的关键字、标志符、数字,转换成程序可识别的中间符号并输出,包含词法错误检测-PL/0 compiler language of a component, lexical analyzer. Read entry from the PL/0 language source code, to identify one of the keywords, identifier, number, convert the
  3. 所属分类:Compiler program

    • 发布日期:2017-04-08
    • 文件大小:4.54kb
    • 提供者:吴潇
  1. Compiler

    0下载:
  2. 编译课上做的小程序,用四种分析方法分别实现(LL1,算符优先,递归下降,简单词法分析) 完成对正则文法所描述的Pascal语言子集单词符号的词法分析程序。 <标识符>→字母︱ <标识符>字母︱ <标识符>数字 <无符号整数>→数字︱ <无符号整数>数字 <单字符分界符> →+ ︱- ︱* ︱ ︱(︱) <双字符分界符>→<大于>=︱<小于>=︱<小于&g
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:472.16kb
    • 提供者:丁丁
  1. cifa

    0下载:
  2. 此为C语言的词法分析器,基本能识别标示符、数字、字母,运算符等-This is the C language, lexical analyzer, to identify the basic indicators, numbers, letters, and other operators
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:18.54kb
    • 提供者:
  1. LexicalAnalyzer

    1下载:
  2. 手工构造一个能够识别C语言的所有典型单词,如:标识符、数字、运算符,和if、while等保留字的确定有限自动机,并写出对应该自动机的程序;然后以一个简化的C语言程序为输入文件,通过所设计的基于上述自动机的词法分析程序获得输入文件中的各个单词及其内码对照表,并以文件形式保存结果(也就是TOKEN序列)。 将自己定义的各个正则表达式转化为NFA,然后将其综合为NFA ,再将NFA 转化为DFA,再将DFA转化为最少状态的DFA ,最后由DFA 转化为词法分析程序。-Manually constr
  3. 所属分类:Compiler program

    • 发布日期:2015-10-10
    • 文件大小:329.88kb
    • 提供者:罗丹
  1. YFFXQ

    0下载:
  2. 使用递归子程序法设计一个语法分析程序,自顶向下分析方法. 1、使用递归下降分析算法分析表达式文法: exp ::= exp addop term | term addop ::= + | - term ::= term mulop factor | factor mulop ::= * | / factor ::= (exp) | number 其中number可以是多位的十进制数字串(整数即可),因此这里还需要一个小的词法分析器来得到number的值。 2、该
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:190.25kb
    • 提供者:龙一
  1. bianyi

    0下载:
  2. 1、设计题目:词法分析器的设计。 2、设计要求: 1、 使用任何一种编程语言编制一个词法分析程序。 2、 该程序能够识别的单词有5类: (1) 关键字:"long", "float", "static", "char", "short", "switch", "int", "const", "if", "then", "else", "for", "while", "break"。 (2) 常数:任何整型常数 (3) 标识符:字母打头的字母数字串。 <标识符&
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:4.91kb
    • 提供者:xufei
  1. cifafenxi

    0下载:
  2. 简单的c语言词法分析程序,可以识别关键字,数字,符号等-C-language lexical analysis of a simple program that can identify the keywords, numbers, symbols, etc.
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:1.17kb
    • 提供者:mczjyl
  1. exp

    0下载:
  2. 这个是我们编译原理的一个中间代码生成器实验,我用的是LR()分析法的属性翻译文法,当然我的句柄识别器是根据老师的实验要求弄的,扩展性不是很好,因为是用数字来代替"字符"的,呵呵```如有需要,那联系我(q284244897)-This is the principle of an intermediate compiler code generator experiments, I use the LR () method of the attribute translation grammar
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:984.1kb
    • 提供者:happy
  1. Lexical

    0下载:
  2. 编译原理的词法分析,可以识别各类词,浮点数字,二进制,八进制,十进制,十六进制-Compiler theory of lexical analysis, can identify all kinds of words, floating point numbers, binary, octal, decimal, hexadecimal
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:18.71kb
    • 提供者:carponlee
  1. WordAnalyzer

    0下载:
  2. 从左至右扫描源程序的字符串,按照词法规则(正则文法规则)识别出一个个正确的单词,并转换成该单词相应的二元式(种别码、属性值)交给语法分析使用。 本程序规定输出用KeyWord代表关键字,Word代表普通标识符,Digit代表阿拉伯数字,SingleWord代表单分界符,DoubleWord代表双分界符,ERROR代表无法识别的字符。-String from left to right scan source, according to lexical rules (regular gramm
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:2.01kb
    • 提供者:jackzhong
« 12 »
搜珍网 www.dssz.com