资源列表
200218024郝亮
- 一个c++de的词法分析此程序可以通过读一个文本文件来进行词法分析-a lexical analysis of this procedure can read a text file for lexical analysis
viterbimatlab
- 一个对(2,1,2)卷积码进行译码的维特比译码程序,它以最大似然译码为思想,根据译码网格,遍寻网格上所有可能的路径,选择最大可能的路径作为幸存路径进行译码。在本程序中,它依次在不同时刻,对网格中的相应列的点按照最大似然准则比较所有以它为终点的路径,即为幸存路径,而把其他路径堵死,弃之不用。故到下一时刻只要对幸存路径延伸出来的路径继续比较即可。由于假设了已知输入,且为有限短序列,所以没有考虑长序列译码时的截短。如果考虑长序列译码,则需要用截短译码器,考虑译码深度。-viterbi
glcd
- 128x64 Graphical LCD Driver With CodevisionAVR
31767678analyse_0
- 编译原理中实现自顶向下语法分析,若文法中不含左递归,并且每个非终结符的所有后选式的首符集都两两不相交,那么就有可能构造一个不带回溯的自顶向下的语法分析程序-Compiler theory to achieve top-down parsing When every not terminal goes without interacting with each other,It can make a process of form up to down
C_minuscomplier1.0
- C_minus词法分析器 1.0版(词法分析器源程序,用c++语言编写的,for c-minus,,Visual C++)-C_minus lexical analyzer Version 1.0 (lexical analyzer source with the c language, for c-minus, and Visual C)
nfa_dfa
- 求正规表达式到NFA(不确定的有限自动机),NFA到DFA及DFA(有限自动机)的最小化 有注释。-seek formal expressions of the NFA (uncertain Finite Automata), the NFA to the DFA and DFA (finite state machine) is the smallest of the Notes.
OPG
- Compiler tech: PROGRAM FOR OPERATOR PRECECENDENCE GRAMMER.precendence grammar tells the compiler the order of executing +,-,/ and * according to ones needs-Compiler tech: PROGRAM FOR OPERATOR PRECECENDENCE GRAMMER.precendence grammar tells the comp
j2
- 多功能运算器- Multi-purpose logic unit
for
- FOR循环语句的翻译程序设计(递归下降法、输出四元式) -FOR loop design of the translation process (recursive descent method, the output quaternion type)
bianyishiyan1
- 编译原理识别一张表编的程序,一个简单的编译方面的程序-Principles of identifying a table compiled program code, a simple compilation of the procedures
LexicalAnalysis
- 用C++编写的一个简单C语言词法分析器,把需要分析的内容保存在C:\input.txt,分 析完毕好保存在C:\output.txt-Using C++ to prepare a simple C language lexical analyzer, the need to analyze the contents stored in C: \ input.txt, finished the analysis of well preserved in the C: \ output.txt
4
- 目的:熟练掌握自下而上的语法分析方法,并能用程序实现。 要求: 1. 使用如下文法: E E+T | T T T*F | F F (E) | id 2. 对于任意给定的输入串(词法记号流)进行语法分析,要求采用LR分析器来完成。手工构造LR分析表,利用移进-归约分析算法(P69 图3.12)输出(P70 表3.8)对应的动作部分。如: 输入:id*+id+(id+id)# 输出:移进 按 F->id归约 移进 error