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

搜索资源列表

  1. Regular

    1下载:
  2. 输入一个正则表达式,可以使用: 小写字母或数字,表示终结符;*,闭包;+,并集;~,补集;E,空串;O,空集 然后程序将生成 相应的NFA,以及化简之后的DFA,最后再输入一个字符串,程序判断它是否满足该正则表达式-input is a regular expression, you can use : lowercase letters or numbers, said Fu end; * Closure; , And set; To complement the set; E, empty
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:175504
    • 提供者:杨震原
  1. Lex.rar

    0下载:
  2. 1.输入文件解析 2.正则表达式转化为NFA 3.多个NFA合并 4.NFA转换DFA 5代码生成 关于输入文件格式: 没有考虑对lex输入文件的出错处理,所以输入文件务必严格书写正确。 Lex中的正规表达式使用了以下运算符: [] | * @ ( ) 并且正规表达式中不能出现其他的子正规表达式。 如果想要在待识别的正则式中使用上述运算符,请使用转义符号,即\。 例如,如果想用*,可以写成\* ,1. Analysis of the input file 2.
  3. 所属分类:Windows编程

    • 发布日期:2017-03-22
    • 文件大小:17588
    • 提供者:顾添锦
  1. DFA

    0下载:
  2. 输入一个正则表达式,输出相应的NFA图,NFA转换为DFA(得到的DFA图要求用画图方法完成并要求先产生子集构造表出来再画DFA图),DFA最小化(也要求用画图方法完成) -Enter a regular expression, the output corresponding NFA map, NFA is converted to DFA (the DFA plans to be asked to use drawing methods and called for the first
  3. 所属分类:Compiler program

    • 发布日期:2017-03-22
    • 文件大小:14112
    • 提供者:liyingan
  1. reEX-DFA

    0下载:
  2. 正则表达式转化为NFA,NFA转化为DFA,DFA最小化-regular expression toDFA
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-30
    • 文件大小:183723
    • 提供者:孙林晶
  1. NFA

    0下载:
  2. nfa to dfa concersion code with regular expression
  3. 所属分类:Applet

    • 发布日期:2017-03-29
    • 文件大小:6729
    • 提供者:sourav
  1. RegextoDFA

    0下载:
  2. 正则表达式转DFA,设计原理:1正则表达式转换为带ε的NFA(Thompson构造法);2ε-NFA转为DFA;3最小化DFA;4DFA状态转换表判断是否接受输入字符串,附有详细文档说明。-Regular expressions turn DFA, design principles: a regular expression is converted to ε of the NFA (Thompson Construction Law) 2ε-NFA to DFA 3 minimal DF
  3. 所属分类:Other systems

    • 发布日期:2017-03-31
    • 文件大小:85008
    • 提供者:王乾坤
  1. regex

    0下载:
  2. 实现了正则表达式转NFA,NFA转DFA,DFA最简化的过程。并可输出DFA到图像。-It can translate Regular Expression into NFA, NFA into DFA, and minimize the DFA. The result can be printed as a graph.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-30
    • 文件大小:187357
    • 提供者:sunli
  1. bianyiyuanli

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

    • 发布日期:2017-11-09
    • 文件大小:147868
    • 提供者:晨曦
  1. compile_work

    0下载:
  2. 从正则表达式到有穷自动机实例 想研究透彻正则表达式,必须知道有穷自动机的原理,这个源码可以给你一个很好的示例参考。编译后程序会生成一个可执行文件,运行这个文件出来一个DOS窗口,然后按提示输入正则表达式。 -From regular expressions to DFA thorough study of examples like regular expressions, we must know the principles of DFA, this source can give
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-05
    • 文件大小:12826
    • 提供者:sdfads
  1. TEMPLATE

    0下载:
  2. 输入正则表达式,转化为NFA,DFA,从测试文档中找出最大匹配子串-Enter the regular expression into NFA, DFA, document from the test to find out the biggest match Substring
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:67756
    • 提供者:
  1. Lexical_analysis

    0下载:
  2. 智能的词法分析 ,能任意输入正则表达式,能求出NFA,DFA,minDFA,和最后的匹配情况-Lexical analysis of intelligence, can enter any regular expression can be obtained NFA, DFA, minDFA, and the final match of the situation
  3. 所属分类:Compiler program

    • 发布日期:2017-04-26
    • 文件大小:441508
    • 提供者:
  1. FA

    0下载:
  2. 正则表达式->NFA/DFA/最简表达式-Regular Expression-> NFA/DFA/the most simple expression
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-26
    • 文件大小:263039
    • 提供者:王据林
  1. lex

    0下载:
  2. 用c++实现的此法分析器,包括正则表达式解析,正则到NFA转换,NFA到DFA转换,和最终的匹配,详见包中README文件-Using c++ parser to achieve this method, including regular expression analysis, while the NFA is converted, NFA to DFA conversion, and end the match, see the package README file
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:15880
    • 提供者:0x7c00
  1. Automate

    0下载:
  2. graphic Automaton simulator,NFA to DFA conversion and minimisation
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:692235
    • 提供者:darkzan
  1. Finite_Aut2127819222008

    0下载:
  2. A Program that can convert your Regular Expression to PostFix Post_Fix to NFA [Thomson s Construction] NFA to DFA [Subset Construction] DFA to minDFA [Table Filling Algorithm]
  3. 所属分类:Algorithm

    • 发布日期:2017-04-01
    • 文件大小:45452
    • 提供者:csp
  1. RegEx2NFA2DFA_RC

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

    • 发布日期:2017-04-01
    • 文件大小:3670
    • 提供者:Kyle Wang
  1. TransformExprTODFA

    0下载:
  2. 正则表达式转NFA NFA转DFA DFA最小化 测试字符串是否匹配-Transfer NFA NFA regular expression to minimize transfer DFA DFA test whether the string matches
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:70636
    • 提供者:
  1. A-poor--regular-expression-matches

    0下载:
  2. 有穷自动机的实现,关于正则语言的学习。有助DFA的理解-Implementation of finite automata, on the regular language learning. Facilitate the understanding of DFA
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-08
    • 文件大小:1580688
    • 提供者:wangpeng
  1. lianxi

    0下载:
  2. java实验编写输入一个数n,输出一个杨辉三角,-Enter the regular expression compiler output principle experiment DFA optimization
  3. 所属分类:Java Develop

    • 发布日期:2017-04-03
    • 文件大小:1673
    • 提供者:dai
  1. DFA.CPP

    0下载:
  2. This program is used to convert regular expression into DFA.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-31
    • 文件大小:796
    • 提供者:Abhishek
« 12 »
搜珍网 www.dssz.com