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

搜索资源列表

  1. Determinis1747915202004

    0下载:
  2. Uploading, This program use to convert nfa to dfa.
  3. 所属分类:Other windows programs

  1. regToDFA

    0下载:
  2. 正则表达式到DFA 并能够输出检测结果。输入文件要求: (a|b)* 文件第一行 aaaa 文件第二行 a-Re to DFA
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:3729
    • 提供者:Superman
  1. RE2NFA

    0下载:
  2. source for conversion of regular expression to NFA in compilers.
  3. 所属分类:Algorithm

    • 发布日期:2015-04-12
    • 文件大小:715
    • 提供者:anitha
  1. simulationofNFA

    0下载:
  2. source code for simulation of NFA in compilers
  3. 所属分类:Algorithm

    • 发布日期:2017-04-11
    • 文件大小:876
    • 提供者:anitha
  1. shiyan2

    0下载:
  2. 本程序主要是使用“子集法”实现NFA的确定化,使用“分割法”实现DFA的最小化,在本程序中用到的主要的数据结构是数组,这些数组是用来存放NFA的初始状态集,及确定化和最小化后的状态矩阵。-This procedure is mainly the use of " sub-set method" to achieve the determination of NFA, the use of " segmentation" to achieve a minimum
  3. 所属分类:Data structs

    • 发布日期:2017-03-25
    • 文件大小:400992
    • 提供者:lihaixia
  1. 2dfa

    0下载:
  2. 这是由RE转NFA再转DFA,最后识别的程序。参考了龙书和陈火旺的书,此程序最终完成的是下面网站要求的功能。http://info.ruc.edu.cn/wangqiuyue/comp_theory.htm-这是由RE转NFA再转DFA,最后识别的程序。参考了龙书和陈火旺的书,http://info.ruc.edu.cn/wangqiuyue/comp_theory.htm
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:15998
    • 提供者:lixmin
  1. c++

    0下载:
  2. NFA to DFA (c++) with c++ langage.
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-08
    • 文件大小:2336
    • 提供者:djongar
  1. 191074

    0下载:
  2. 编译原理 关于NFA到dDFA转换的c程序-Compiler Construction Principles on the NFA to dDFA convert c program
  3. 所属分类:Compiler program

    • 发布日期:2017-04-05
    • 文件大小:17892
    • 提供者:
  1. fileloading

    0下载:
  2. convert nfa to dfa this program neveshte shode dar c++ builder
  3. 所属分类:.net

    • 发布日期:2017-04-16
    • 文件大小:388743
    • 提供者:moein
  1. A_N_-_Quee18114710282004

    0下载:
  2. convert nfa to dfa this program neveshte shode dar c++ builder
  3. 所属分类:.net

    • 发布日期:2017-04-08
    • 文件大小:1142
    • 提供者:moein
  1. Regularexpressionenfa

    0下载:
  2. Regular expression to e-nfa
  3. 所属分类:Compiler program

    • 发布日期:2017-04-11
    • 文件大小:926
    • 提供者:Mani
  1. 135

    0下载:
  2. user enter one dfa or nfa and program check this automat is nfa or dfa
  3. 所属分类:Console

    • 发布日期:2017-04-01
    • 文件大小:495256
    • 提供者:barfoyakh
  1. compiler

    0下载:
  2. 编译原理的词法分析器。可以解析正则表达式。生成NFA及DFA-Compilation Principle of lexical analyzer. Regular expressions can be resolved. Build NFA and DFA
  3. 所属分类:Compiler program

    • 发布日期:2017-04-24
    • 文件大小:212209
    • 提供者:陈晨
  1. RegEx2NFA_RC

    0下载:
  2. 由正则表达式构造NFA的程序,并可以对输入串模拟正则表达式匹配-This is a C program used in compiling the given regular expression into an equivalent epsilon-NFA, simulated through tracking State sets.
  3. 所属分类:Special Effects

    • 发布日期:2017-04-13
    • 文件大小:3072
    • 提供者:Kyle Wang
  1. Lexical_analyzer

    0下载:
  2. 词法分析器,NFA转DFA,程序自动建立存储结构-Lexical analyzer, NFA transfer DFA, program automatically creates the storage structure
  3. 所属分类:Compiler program

    • 发布日期:2017-05-04
    • 文件大小:1349822
    • 提供者:李睿
  1. zhengze

    0下载:
  2. 正则表达式及nfa到dfa再到mfa的转化-Regular expressions and nfa to dfa conversion and then to mfa
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:8090
    • 提供者:李睿
  1. nfatodfa

    0下载:
  2. nfa 转化为 dfa 能够运行成功,我自己已经实验过了,欢迎下载-nfa dfa able to run into a success, I have experimented with, and welcome to download
  3. 所属分类:Windows编程

    • 发布日期:2017-04-13
    • 文件大小:1909
    • 提供者:小杰
  1. LexicalAnalyzer

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

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

    0下载:
  2. **本次实验在Visual Studio.NET 2003环境下开发** 此压缩包内包括以下五个文件: 1.Lex的源代码文件 Lex.cpp 2.Lex的测试输入文件 test.txt 3.测试文件需包含的头文件 yytab.h 4.经过Lex生成的结果文件yylex.cpp 5.说明 关于Lex: 本实验中完成的Lex可以完成以下算法: 1.输入文件解析 2.多个NFA合并 3.NFA转换DFA 4.最小化DFA 5.生成代码
  3. 所属分类:.net

    • 发布日期:2016-11-24
    • 文件大小:652302
    • 提供者:王伟
  1. NFAtoDFA

    0下载:
  2. 不确定的有穷自动机NFA转确定化的有穷自动机DFA
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:86223
    • 提供者:lk
« 1 2 ... 4 5 6 7 8 910 11 12 13 14 »
搜珍网 www.dssz.com