├── README.md ├── 实验 ├── 算术表达式四元式翻译器的设计实现.docx ├── 表达式语法分析器的设计实现.docx └── 词法分析扫描器的设计实现.docx └── 课程设计SimpleCompiler ├── source_code ├── Grammar.cpp ├── Grammar.exe ├── Grammar.h ├── Grammar.o ├── Simple_Complier.cbp ├── Simple_Complier.depend ├── Simple_Complier.layout ├── SymbolTable.cpp ├── SymbolTable.h ├── Vn.txt ├── bin │ └── Debug │ │ └── Simple_Complier.exe ├── complier.cpp ├── complier.h ├── complier.o ├── grammar_in.txt ├── grammar_out.txt ├── in.txt ├── lexer.cpp ├── lexer.h ├── lexical.cpp ├── lexical.h ├── obj │ └── Debug │ │ ├── Grammar.o │ │ ├── SymbolTable.o │ │ ├── complier.o │ │ ├── lexer.o │ │ ├── lexical.o │ │ ├── optimizequa.o │ │ └── parser.o ├── optimizequa.cpp ├── optimizequa.h ├── out.txt ├── parser.cpp ├── parser.exe ├── parser.h ├── parser.o ├── product.txt ├── target.h ├── test.txt └── vt.txt └── 文档 ├── 2016级-编译原理-课程设计.ppt ├── Simple_Complier设计说明文档.doc ├── 一个简单语言的编译实例.doc └── 编译课设-最终文档.docx /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/README.md -------------------------------------------------------------------------------- /实验/算术表达式四元式翻译器的设计实现.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/实验/算术表达式四元式翻译器的设计实现.docx -------------------------------------------------------------------------------- /实验/表达式语法分析器的设计实现.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/实验/表达式语法分析器的设计实现.docx -------------------------------------------------------------------------------- /实验/词法分析扫描器的设计实现.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/实验/词法分析扫描器的设计实现.docx -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/Grammar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/Grammar.cpp -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/Grammar.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/Grammar.exe -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/Grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/Grammar.h -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/Grammar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/Grammar.o -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/Simple_Complier.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/Simple_Complier.cbp -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/Simple_Complier.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/Simple_Complier.depend -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/Simple_Complier.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/Simple_Complier.layout -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/SymbolTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/SymbolTable.cpp -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/SymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/SymbolTable.h -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/Vn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/Vn.txt -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/bin/Debug/Simple_Complier.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/bin/Debug/Simple_Complier.exe -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/complier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/complier.cpp -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/complier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/complier.h -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/complier.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/complier.o -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/grammar_in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/grammar_in.txt -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/grammar_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/grammar_out.txt -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/in.txt -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/lexer.cpp -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/lexer.h -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/lexical.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/lexical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/lexical.h -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/obj/Debug/Grammar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/obj/Debug/Grammar.o -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/obj/Debug/SymbolTable.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/obj/Debug/SymbolTable.o -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/obj/Debug/complier.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/obj/Debug/complier.o -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/obj/Debug/lexer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/obj/Debug/lexer.o -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/obj/Debug/lexical.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/obj/Debug/lexical.o -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/obj/Debug/optimizequa.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/obj/Debug/optimizequa.o -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/obj/Debug/parser.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/obj/Debug/parser.o -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/optimizequa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/optimizequa.cpp -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/optimizequa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/optimizequa.h -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/out.txt -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/parser.cpp -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/parser.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/parser.exe -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/parser.h -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/parser.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/parser.o -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/product.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/product.txt -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/target.h -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/test.txt -------------------------------------------------------------------------------- /课程设计SimpleCompiler/source_code/vt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/source_code/vt.txt -------------------------------------------------------------------------------- /课程设计SimpleCompiler/文档/2016级-编译原理-课程设计.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/文档/2016级-编译原理-课程设计.ppt -------------------------------------------------------------------------------- /课程设计SimpleCompiler/文档/Simple_Complier设计说明文档.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/文档/Simple_Complier设计说明文档.doc -------------------------------------------------------------------------------- /课程设计SimpleCompiler/文档/一个简单语言的编译实例.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/文档/一个简单语言的编译实例.doc -------------------------------------------------------------------------------- /课程设计SimpleCompiler/文档/编译课设-最终文档.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyqCS/CompilationPrinciple/HEAD/课程设计SimpleCompiler/文档/编译课设-最终文档.docx --------------------------------------------------------------------------------