资源列表
ieeepapers
- mfile code for filters
powershield
- PBD反编译器,能反编译PB5-PB12的任何由PB生成的伪代码。-PBD decompiler can decompile any PB5-PB12 PB generated by the pseudo-code.
WindowsFormsApplication2
- 词法分析程序 但是考虑房价阿里; 啊发放-a Morphology Analysis Program
6
- IC compiler error message & quick reference
4
- IC compiler design planning user guide
HuffmanCoding
- 用哈弗曼进行编码的简单压缩,解码小软件(只对txt文件进行压缩,内容仅限与阿拉伯数字和字母)-Encoded by Ha Fuman simple compression, decoding a small software (only the txt file compression, content only with Arabic numerals and letters)
prog1A
- A program that takes as argument a list of data types, and it prints the data type size in bytes under the current system
prog4
- A program that takes as argument a list of data types, and it prints the data type size in bytes under the current system
shumaguan
- 这是一个七段译码器的labview程序 可以显示0到9任意数字-This is a seven-segment decoder labview program can display any number from 0 to 9
LR-parser
- LR分析器设计 给定说明语句的拓广文法G[S ]如下: (0) S ->S (1) S->v I:T (2) I->I,i (3) I->i (4) T->r 其中v代表终结符var,r代表real。 其识别规范句型活前缀的DFA及LR(0)分析表如下: 输入 状态 ACTION表 GOTO表 v i , : r # S I T 0 S2 1 1 acc 2 S4
Design-of-operator-precedence
- 算符优先分析器设计 给定定义算术表达式的算符优先文法如下: G[E]: (1)E->E+T (2)E->E-T (3) E->T (4)T->T*F (5)T->T/F (6)T->F (7)F->P^F (8)F->P (9)P->(E) (10)P->i 编程实现此文法的算法优先分析器,并设输入的文法的句子为: (i*(i+i)-i )/i^i^i 给出输
LL-(1)-parser
- LL(1)语法分析器设计 1.如下为给定的LL(1)文法。 G[<P>]: 1) <P>->program <D> : <T> begin <S> end {program} 2) D->i D’ {i} 3) D’->, i D’ {,} 4) D’->ε {:} 5) S->s S’ {s} 6) S’-> s S’ { } 7) S’->ε {end