资源列表
SharpTopiBASIC2099921312008
- A compiler program for visual basic
link-base
- 连接器的输入文件是汇编器产生的浮动地址目标文件(.obj),产生的输出文件是可执行目标文件(.out)和连接过程结果说明文件(.map)-link base knowlege introducation
Sharppragma-instruction
- 在所有的预处理指令中,#Pragma 指令可能是最复杂的了,它的作用是设定编译器的状态或者是指示编译器完成一些特定的动作。-pragma language instruction inducation
a.pbs
- 运行并行的mpif77文件用的pba文件-for mpif77
PCM
- 关于PCM编码和译码的程序,已经自己运行过了。-PCM encoding and decoding on the program, have run their own before.
ex1
- 编译原理实验一。自己写的比较简单的词法分析器,附加实验报告。-Compile a principle experiment. Relatively simple to write the lexical analyzer, additional test report.
ex4
- 编译原理实验四 递归下降语义分析 附加实验报告-Recursive descent compiler principle experiment four additional experiments reported semantic analysis
ex5
- 编译原理实验五 SLR语义分析法 附加实验报告-Compile principle experiment five additional experiments SLR semantic analysis report
Lexical-analyzer-(scanner)
- 词法分析程序(扫描器)的设计-编译原理实验-Lexical analyzer (scanner) of the design- build principle experiment
Recursive-descent-parser
- 递归下降语法分析程序设计 - 编译原理实验-Recursive descent parser design- build principle experiment
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
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 给出输