搜索资源列表
编译原理及实践
- 目 录 译者序 前言 第1章 概论 1 1.1 为什么要用编译器 2 1.2 与编译器相关的程序 3 1.3 翻译步骤 5 1.4 编译器中的主要数据结构 8 1.5 编译器结构中的其他问题 10 1.6 &
有限自动机的确定化
- 此程序可以把编译原理中的不确定的有限自动机确定化,是编译中课程设计的内容-this program can build on the principle of uncertainty to determine finite automata, which is to compile the contents of the curriculum design
DFA自动版
- 我的编译原理大作业,自动分析语法,判断语句是否符合规则。DFA即有穷自动机。因为这个工作量比较大,所以恕我不无帐号发放了。-I build large operating principle, automatic syntax analysis, judgment statement with the rules. DFA that the DFA. Because the workload is bigger, it is not without regret that I paid the
DFAjuti
- 正则式到有穷自动机 最近刚学了编译原理 搞出来得这个东西-to DFA has recently compiled a study of the principles of producing more things
编译原理报告
- 设计目的 1. 程序的方法实现语法分析的LL(1)方法。手工构造词法分析程序 。 2. 锻炼自己的编写程序的能力和独立的编程思维能力。提高自己的编程能力。 3. 熟悉编译原理词法分析和语法分析的方法,加深对基本方法的了解。 4. 让我们更家进一步的理解编译原理,更好的的学习它的一些思路,掌握编译原理的理论基础。 5.让我们更加熟悉编程语言的运用和编程的技巧。更加了解编程的思维方式。 6. 采用自动机这种方法来设计词法分析程序,使思路更加清晰,
有限自动(编译原理)源代码机
- 有限自动机 是编译原理课程设计源代码 可以用来借鉴与参考,可以运行。-Finite Automata Theory courses is to compile the source code design can be used to make a reference, can run.
zidongji
- 编译原理中的NFA转换到DFA(自动机的转换)-compiler principles of the NFA conversion to DFA (automatic machine translation)
wfp
- 这个是编译原理的实验~~实验名称为自动机是大学三年级的实验
DFA
- 正则表达式到有穷自动机。 “DFAScan”的改进版本。 编译原理实验代码之一。
fada
- 编译原理自动机,我们做的第二个作业,初学者一定要看很有帮助
有限自动机的运行
- 编译原理-有限自动机的运行,/程序功能: 利用状态表和有限自动机的运行原理,识别一个输入串是否为一个有效的无符号定点实数。-runs of finity auto-machine compiler principle: runs of finity auto-machine function of programme: utilize the table of state and the running principle of finity auto-machine, identify
刘琴-0206-44-自动机的应用
- 本课程设计采用C语言进行编译原理实现课题有限自动机的应用,其目的如下:(1) 理解有限自动机的作用;(2) 利用状态图和状态表表示有限自动机;(3) 以程序实现有限自动机的运行过程-courses designed using the C language compiler principles to achieve automatic machine issues limited the application of its purpose as follows : (a) limited u
自动机
- 实现自动机,用于计算理论和编译原理的学习,关于上下文无关文法和正则表达式-automatic machine used in the calculation of compiler theory and principles of learning, on the context-free grammar, and is a regular expression
正则式到有穷自动机
- 正则式到有穷自动机 最近刚学了编译原理 搞出来得这个东西-to DFA has recently compiled a study of the principles of producing more things
正则式到有穷自动机
- 学习编译原理时的一份代码。
retodfa
- 正则表达式到有限自动机的转换,编译原理的课程设计,做的不错-RE->DFA
wybyyl
- 编译原理之词法识别 利用有限自动机识别词法 初始化保留字表和标示符表,识别非法字符-Compiler theory of lexical identification using finite automata recognize lexical reserved words table and initialize the table identifier to identify illegal characters
2
- 这是我们组做的关于编译原理的课程设计,是一个自动机。-This is our group to do the course on compiler design principle, is an automatic machine.
Automata(1)
- 编译原理自动机试验,帮助实现自动机,实验报告哦-Automata.cs
编译原理DFA模拟程序
- 编译原理 简单的词法设计——DFA模拟程序 1,自己定义一个DFA或者一个右线性正规文法 2,利用合适数据结构存储自动机 3,利用有穷确定自动机M=(K,Σ,f, S,Z)行为模拟程序算法,来对于任意给定的串,若属于该语言时,该过程经有限次计算后就会停止并回答“是”,若不属于,要么能停止并回答“不是”