├── .gitignore ├── ICS ├── README.md └── hw │ ├── hw1 │ ├── hw01-ans.pdf │ ├── hw01.md │ ├── hw01.pdf │ └── t.png │ ├── hw2 │ ├── hw02.md │ ├── hw02.pdf │ └── images │ │ └── T8.png │ ├── hw3 │ ├── hw03-ans.pdf │ ├── hw03.md │ ├── hw03.pdf │ ├── pic1.png │ └── pic2.png │ ├── hw4 │ ├── hw04-ans.pdf │ ├── hw04.md │ └── hw04.pdf │ └── hw5 │ ├── hw05-ans.pdf │ ├── hw05.assets │ ├── image-20211219200543834.png │ └── image-20211219200929374.png │ ├── hw05.md │ └── hw05.pdf ├── README.md ├── 人工智能基础 ├── README.md ├── exp1 │ ├── astar │ │ ├── Makefile │ │ ├── input │ │ │ ├── input0.txt │ │ │ ├── input1.txt │ │ │ ├── input2.txt │ │ │ ├── input3.txt │ │ │ ├── input4.txt │ │ │ ├── input5.txt │ │ │ ├── input6.txt │ │ │ ├── input7.txt │ │ │ ├── input8.txt │ │ │ └── input9.txt │ │ ├── output │ │ │ ├── output0.txt │ │ │ ├── output1.txt │ │ │ ├── output2.txt │ │ │ ├── output3.txt │ │ │ ├── output4.txt │ │ │ ├── output5.txt │ │ │ ├── output6.txt │ │ │ ├── output7.txt │ │ │ ├── output8.txt │ │ │ └── output9.txt │ │ └── src │ │ │ ├── astar.cpp │ │ │ └── validate.cpp │ ├── csp │ │ ├── Makefile │ │ ├── input │ │ │ ├── input0.txt │ │ │ ├── input1.txt │ │ │ ├── input2.txt │ │ │ ├── input3.txt │ │ │ ├── input4.txt │ │ │ ├── input5.txt │ │ │ ├── input6.txt │ │ │ ├── input7.txt │ │ │ ├── input8.txt │ │ │ └── input9.txt │ │ ├── output │ │ │ ├── output0.txt │ │ │ ├── output1.txt │ │ │ ├── output2.txt │ │ │ ├── output3.txt │ │ │ ├── output4.txt │ │ │ ├── output5.txt │ │ │ ├── output6.txt │ │ │ ├── output7.txt │ │ │ ├── output8.txt │ │ │ └── output9.txt │ │ └── src │ │ │ ├── csp.cpp │ │ │ └── csp_validate.cpp │ ├── exp.pdf │ └── report.pdf └── exp2 │ ├── Bayesian-network.py │ ├── KMeans.py │ ├── docs_exp2_ai2023sp_ustc.pdf │ ├── input.txt │ ├── report.pdf │ └── train.py ├── 体系结构 ├── Lab5 │ ├── Lab5-数据级并行.md │ ├── Makefile │ ├── report.md │ ├── src_cpu │ │ ├── cpu_avx.c │ │ ├── cpu_avx_block.c │ │ └── cpu_baseline.c │ ├── src_gpu │ │ ├── gpu_baseline.cu │ │ └── gpu_block.cu │ ├── time_gpu_baseline.py │ └── time_gpu_block.py └── README.md ├── 操作系统H实验 └── README.md ├── 数字电路实验 ├── README.md ├── lab02 │ ├── lab02.md │ ├── pic │ │ ├── c01.png │ │ ├── c02.png │ │ ├── c03.png │ │ ├── c04.png │ │ ├── c05.png │ │ ├── c06.png │ │ ├── c07.png │ │ ├── c08.png │ │ ├── c09.png │ │ ├── c10.png │ │ ├── c11.png │ │ ├── cf1.png │ │ └── cf2.png │ ├── 实验02_简单组合逻辑电路.pdf │ └── 实验2-PB20000180-刘良宇.pdf ├── lab03 │ ├── lab03.md │ ├── pic │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── t1.png │ │ ├── t2.png │ │ ├── t3-1.png │ │ ├── t3-2.png │ │ ├── t4-1.png │ │ ├── t4-2.png │ │ └── t5.png │ ├── 实验03_简单时序逻辑电路.pdf │ └── 实验3-PB20000180-刘良宇.pdf ├── lab04 │ ├── lab04.md │ ├── 实验04_Verilog硬件描述语言.pdf │ └── 实验4-PB20000180-刘良宇.pdf ├── lab05 │ ├── image │ │ ├── t1.png │ │ ├── t2.png │ │ ├── t3.png │ │ └── t4.png │ ├── lab05.md │ ├── 实验05_使用Vivado进行仿真.pdf │ └── 实验5-PB20000180-刘良宇.pdf ├── lab06 │ ├── image │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.png │ ├── lab06.md │ ├── 实验06_FPGA原理及Vivado综合.pdf │ └── 实验6-PB20000180-刘良宇.pdf ├── lab07 │ ├── image │ │ ├── lcd3.png │ │ ├── led1.png │ │ ├── led2.png │ │ ├── rom.png │ │ ├── xdc1.png │ │ └── xdc2.png │ ├── lab07.md │ ├── 实验07_FPGA实验平台及IP核使用.pdf │ └── 实验7-PB20000180-刘良宇.pdf ├── lab08 │ ├── image │ │ ├── logisim1.png │ │ ├── logisim2.png │ │ ├── t3.png │ │ └── xdc1.png │ ├── lab08.md │ ├── 实验08_信号处理及有限状态机.pdf │ └── 实验8-PB20000180-刘良宇.pdf ├── labS │ ├── image │ │ ├── add1.png │ │ ├── add2.png │ │ ├── before.png │ │ ├── beforem.png │ │ ├── fib.png │ │ ├── fib7.png │ │ ├── fib9.png │ │ ├── lc3.png │ │ ├── m1.png │ │ ├── m2.png │ │ ├── minus1.png │ │ ├── multi.png │ │ ├── op.png │ │ ├── ram.png │ │ └── write.png │ ├── labS.md │ ├── src │ │ ├── bytestohex.v │ │ ├── rx.v │ │ └── top.v │ ├── 实验10-PB20000180-刘良宇.pdf │ ├── 实验10_综合实验.pdf │ └── 远程实验串口.pdf ├── logo.png └── 实验报告模板.md ├── 数据库实验 ├── README.md ├── lab1 │ ├── borrow_book.sql │ ├── init_table_and_data.sql │ ├── query.sql │ ├── report.md │ ├── return_book.sql │ ├── trigger.sql │ └── update_reader_id.sql └── lab2.pdf ├── 数据结构 ├── hw1-多项式计算器 │ ├── back-end │ │ ├── main.cpp │ │ └── poly.php │ └── front-end │ │ ├── index.html │ │ ├── main.css │ │ └── main.js ├── 大作业1-离散事件模拟 │ ├── readme.md │ ├── report.pdf │ └── 离散事件模拟.pdf ├── 大作业2-Huffman编码压缩-解压器 │ ├── 2021Spring-DS-Lab#2-v1.3.pdf │ └── readme.md └── 平时作业 │ ├── hw10 │ ├── hw.cpp │ ├── hw.md │ └── hw.pdf │ ├── hw11 │ ├── hw.cpp │ ├── hw.md │ └── hw.pdf │ ├── hw12 │ ├── hw.cpp │ ├── hw.md │ └── hw.pdf │ ├── hw13 │ ├── hw.md │ └── hw.pdf │ ├── hw14 │ ├── hw.cpp │ ├── hw.md │ └── hw.pdf │ ├── hw4 │ ├── 作业.cpp │ ├── 作业.md │ └── 作业.pdf │ ├── hw5 │ ├── hw.cpp │ ├── hw.md │ └── hw.pdf │ ├── hw6 │ ├── hw.cpp │ ├── hw.md │ └── hw.pdf │ ├── hw7 │ ├── hw.cpp │ ├── hw.md │ └── hw.pdf │ ├── hw8 │ ├── hw.cpp │ ├── hw.md │ └── hw.pdf │ ├── hw9 │ ├── hw.cpp │ ├── hw.md │ └── hw.pdf │ └── 数据结构题集 (C语言版).pdf ├── 机器学习概论实验 └── LAB1_PB20000180 │ ├── Loan.ipynb │ ├── Logistic.py │ ├── ReadMe.md │ ├── Report.pdf │ └── loan.csv ├── 程序设计 ├── 1.1输出三角形.c ├── 1.2一元二次方程.c ├── 10.1.向无尽的大雨献上花束(雾)-环形链表.c ├── 10.1.向无尽的大雨献上花束(雾)-递归DFS.c ├── 10.1.向无尽的大雨献上花束(雾)-非递归DFS.c ├── 2.1整数商和商.c ├── 2.2圆周长和面积.c ├── 2.3三角形面积.c ├── 2.extra我的名字.c ├── 3.1搜索最长连续数.c ├── 3.2素数输出.c ├── 3.3计算M到N的水仙花数.c ├── 4.1从M到N的回文数.c ├── 4.2计算阶乘后的零的个数.c ├── 4.3两整数求和.c ├── 5.1合法输入串.c ├── 5.2求sin(x)的近似值.c ├── 6.1转圈圈.c ├── 6.2叶氏筛法.c ├── 6.3终极捡钱抓锚Tm.c ├── 7.1内存分配.c ├── 7.2二维池化运算.c ├── 7.3计算组合个数.c ├── 8.1插入字符.c ├── 8.2顺时针打印二维数组.c ├── 8.3最上川-递归DFS.c ├── 8.3最上川-非递归类BFS.c ├── 9.1奇偶排序算法(指针实现).c ├── 9.2分组.c ├── 9.3计算组合个数2.0.c ├── 作业2.1.c ├── 作业2.2.c ├── 作业2.3.c ├── 作业3.1.c ├── 作业3.2.c ├── 作业3.3.c ├── 作业4.1-直接递归.c ├── 作业4.1-边递归边存储.c ├── 作业4.2.c ├── 作业5.1.c ├── 作业5.2.c ├── 作业5.3.c ├── 其他1000以内素数.c ├── 小测1.1求相遇时间.c ├── 小测1.2一个申必的位运算问题.c ├── 小测1.3博弈游戏.c ├── 小测2.1网络基站问题.c ├── 小测2.2奇偶排序算法-快速排序-库函数.c ├── 小测2.2奇偶排序算法-快速排序.c ├── 小测2.2奇偶排序算法-选择排序.c └── 小测2.3循环数组变换.c ├── 程序设计二 ├── README.md ├── 上机0-词典.c ├── 上机1-高精度_快速幂_小数的幂.c ├── 上机2-逆逆波兰数.c ├── 上机3-一教的教室.c ├── 上机4-全排列计数.c ├── 上机4-全排列输出.c ├── 上机4-吃金币.c └── 上机4-通过oj题目的最大概率.c ├── 算法实验 ├── 2-刘良宇-PB20000180-project1 │ ├── 2-刘良宇-PB20000180-project1.pdf │ ├── ex1 │ │ ├── Makefile │ │ ├── build │ │ │ └── .gitkeep │ │ ├── input │ │ │ └── input.txt │ │ ├── output │ │ │ ├── counting_sort │ │ │ │ └── .gitkeep │ │ │ ├── heap_sort │ │ │ │ └── .gitkeep │ │ │ ├── merge_sort │ │ │ │ └── .gitkeep │ │ │ └── quick_sort │ │ │ │ └── .gitkeep │ │ └── src │ │ │ ├── counting.hpp │ │ │ ├── heap.hpp │ │ │ ├── main.cpp │ │ │ ├── merge.hpp │ │ │ └── quick.hpp │ └── 算法基础-实验一-排序算法 .pdf ├── 2-刘良宇-PB20000180-project2 │ ├── ex1 │ │ ├── Makefile │ │ ├── input │ │ │ └── 2_1_input.txt │ │ ├── output │ │ │ ├── result.txt │ │ │ └── time.txt │ │ └── src │ │ │ ├── main.cpp │ │ │ └── matrix_chain_multiply.hpp │ ├── ex2 │ │ ├── Makefile │ │ ├── input │ │ │ └── 2_2_input.txt │ │ ├── output │ │ │ ├── result_10.txt │ │ │ ├── result_15.txt │ │ │ ├── result_20.txt │ │ │ ├── result_25.txt │ │ │ ├── result_30.txt │ │ │ └── time.txt │ │ └── src │ │ │ ├── LCS.hpp │ │ │ └── main.cpp │ └── 实验报告.pdf ├── 2-刘良宇-PB20000180-project3 │ ├── ex1 │ │ ├── input │ │ │ └── input.txt │ │ ├── output │ │ │ ├── delete_data.txt │ │ │ ├── inorder.txt │ │ │ └── search.txt │ │ └── src │ │ │ ├── IntervalTree.hpp │ │ │ └── main.cpp │ └── 实验报告.pdf ├── 2-刘良宇-PB20000180-project4 │ ├── ex1 │ │ ├── input │ │ │ └── .gitkeep │ │ ├── output │ │ │ └── .gitkeep │ │ └── src │ │ │ ├── gen_input.cpp │ │ │ └── main.cpp │ └── 实验报告.pdf └── README.md ├── 编译原理H ├── H10-1_多态重载.md ├── H10-2_多态重载和中间表示.md ├── H12_中间表示与中间代码生成.md ├── H13 │ └── stack.png ├── H13_运行时空间的组织与中间代码生成.md ├── H14_循环与代码生成.md ├── H15-2_代码优化.md ├── H15_1 │ ├── fig │ │ └── image-20221212110448972.png │ ├── problem.md │ └── test │ │ ├── q3.c │ │ ├── q3.ll │ │ ├── test.c │ │ └── xiaoyu.ll ├── H1_词法描述.md ├── H3-1_词法分析.md ├── H3-2_语法分析1.md ├── H4-1_语法分析2.md ├── H4-2_语法分析3.md ├── H6-1_语法分析4.md ├── H6-2_语法分析5&语法制导的翻译1.md ├── H8-1_语法制导的翻译2.md ├── H9_类型检查1.md └── h14 │ └── dfs.png ├── 编译原理实验 ├── README.md ├── pw2 │ ├── .gitignore │ ├── antlr4-examples │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── cmake │ │ │ └── FindANTLR.cmake │ │ ├── grammar │ │ │ ├── labLexer.g4 │ │ │ └── testfile │ │ ├── lib │ │ │ └── libantlr4-runtime.so.4.8 │ │ └── src │ │ │ └── main.cpp │ ├── antlr4-runtime │ │ ├── ANTLRErrorListener.cpp │ │ ├── ANTLRErrorListener.h │ │ ├── ANTLRErrorStrategy.cpp │ │ ├── ANTLRErrorStrategy.h │ │ ├── ANTLRFileStream.cpp │ │ ├── ANTLRFileStream.h │ │ ├── ANTLRInputStream.cpp │ │ ├── ANTLRInputStream.h │ │ ├── BailErrorStrategy.cpp │ │ ├── BailErrorStrategy.h │ │ ├── BaseErrorListener.cpp │ │ ├── BaseErrorListener.h │ │ ├── BufferedTokenStream.cpp │ │ ├── BufferedTokenStream.h │ │ ├── CharStream.cpp │ │ ├── CharStream.h │ │ ├── CommonToken.cpp │ │ ├── CommonToken.h │ │ ├── CommonTokenFactory.cpp │ │ ├── CommonTokenFactory.h │ │ ├── CommonTokenStream.cpp │ │ ├── CommonTokenStream.h │ │ ├── ConsoleErrorListener.cpp │ │ ├── ConsoleErrorListener.h │ │ ├── DefaultErrorStrategy.cpp │ │ ├── DefaultErrorStrategy.h │ │ ├── DiagnosticErrorListener.cpp │ │ ├── DiagnosticErrorListener.h │ │ ├── Exceptions.cpp │ │ ├── Exceptions.h │ │ ├── FailedPredicateException.cpp │ │ ├── FailedPredicateException.h │ │ ├── InputMismatchException.cpp │ │ ├── InputMismatchException.h │ │ ├── IntStream.cpp │ │ ├── IntStream.h │ │ ├── InterpreterRuleContext.cpp │ │ ├── InterpreterRuleContext.h │ │ ├── Lexer.cpp │ │ ├── Lexer.h │ │ ├── LexerInterpreter.cpp │ │ ├── LexerInterpreter.h │ │ ├── LexerNoViableAltException.cpp │ │ ├── LexerNoViableAltException.h │ │ ├── ListTokenSource.cpp │ │ ├── ListTokenSource.h │ │ ├── NoViableAltException.cpp │ │ ├── NoViableAltException.h │ │ ├── Parser.cpp │ │ ├── Parser.h │ │ ├── ParserInterpreter.cpp │ │ ├── ParserInterpreter.h │ │ ├── ParserRuleContext.cpp │ │ ├── ParserRuleContext.h │ │ ├── ProxyErrorListener.cpp │ │ ├── ProxyErrorListener.h │ │ ├── RecognitionException.cpp │ │ ├── RecognitionException.h │ │ ├── Recognizer.cpp │ │ ├── Recognizer.h │ │ ├── RuleContext.cpp │ │ ├── RuleContext.h │ │ ├── RuleContextWithAltNum.cpp │ │ ├── RuleContextWithAltNum.h │ │ ├── RuntimeMetaData.cpp │ │ ├── RuntimeMetaData.h │ │ ├── Token.cpp │ │ ├── Token.h │ │ ├── TokenFactory.h │ │ ├── TokenSource.cpp │ │ ├── TokenSource.h │ │ ├── TokenStream.cpp │ │ ├── TokenStream.h │ │ ├── TokenStreamRewriter.cpp │ │ ├── TokenStreamRewriter.h │ │ ├── UnbufferedCharStream.cpp │ │ ├── UnbufferedCharStream.h │ │ ├── UnbufferedTokenStream.cpp │ │ ├── UnbufferedTokenStream.h │ │ ├── Vocabulary.cpp │ │ ├── Vocabulary.h │ │ ├── WritableToken.cpp │ │ ├── WritableToken.h │ │ ├── antlr4-common.h │ │ ├── antlr4-runtime.h │ │ ├── atn │ │ │ ├── ATN.cpp │ │ │ ├── ATN.h │ │ │ ├── ATNConfig.cpp │ │ │ ├── ATNConfig.h │ │ │ ├── ATNConfigSet.cpp │ │ │ ├── ATNConfigSet.h │ │ │ ├── ATNDeserializationOptions.cpp │ │ │ ├── ATNDeserializationOptions.h │ │ │ ├── ATNDeserializer.cpp │ │ │ ├── ATNDeserializer.h │ │ │ ├── ATNSerializer.cpp │ │ │ ├── ATNSerializer.h │ │ │ ├── ATNSimulator.cpp │ │ │ ├── ATNSimulator.h │ │ │ ├── ATNState.cpp │ │ │ ├── ATNState.h │ │ │ ├── ATNType.h │ │ │ ├── AbstractPredicateTransition.cpp │ │ │ ├── AbstractPredicateTransition.h │ │ │ ├── ActionTransition.cpp │ │ │ ├── ActionTransition.h │ │ │ ├── AmbiguityInfo.cpp │ │ │ ├── AmbiguityInfo.h │ │ │ ├── ArrayPredictionContext.cpp │ │ │ ├── ArrayPredictionContext.h │ │ │ ├── AtomTransition.cpp │ │ │ ├── AtomTransition.h │ │ │ ├── BasicBlockStartState.cpp │ │ │ ├── BasicBlockStartState.h │ │ │ ├── BasicState.cpp │ │ │ ├── BasicState.h │ │ │ ├── BlockEndState.cpp │ │ │ ├── BlockEndState.h │ │ │ ├── BlockStartState.cpp │ │ │ ├── BlockStartState.h │ │ │ ├── ContextSensitivityInfo.cpp │ │ │ ├── ContextSensitivityInfo.h │ │ │ ├── DecisionEventInfo.cpp │ │ │ ├── DecisionEventInfo.h │ │ │ ├── DecisionInfo.cpp │ │ │ ├── DecisionInfo.h │ │ │ ├── DecisionState.cpp │ │ │ ├── DecisionState.h │ │ │ ├── EmptyPredictionContext.cpp │ │ │ ├── EmptyPredictionContext.h │ │ │ ├── EpsilonTransition.cpp │ │ │ ├── EpsilonTransition.h │ │ │ ├── ErrorInfo.cpp │ │ │ ├── ErrorInfo.h │ │ │ ├── LL1Analyzer.cpp │ │ │ ├── LL1Analyzer.h │ │ │ ├── LexerATNConfig.cpp │ │ │ ├── LexerATNConfig.h │ │ │ ├── LexerATNSimulator.cpp │ │ │ ├── LexerATNSimulator.h │ │ │ ├── LexerAction.cpp │ │ │ ├── LexerAction.h │ │ │ ├── LexerActionExecutor.cpp │ │ │ ├── LexerActionExecutor.h │ │ │ ├── LexerActionType.h │ │ │ ├── LexerChannelAction.cpp │ │ │ ├── LexerChannelAction.h │ │ │ ├── LexerCustomAction.cpp │ │ │ ├── LexerCustomAction.h │ │ │ ├── LexerIndexedCustomAction.cpp │ │ │ ├── LexerIndexedCustomAction.h │ │ │ ├── LexerModeAction.cpp │ │ │ ├── LexerModeAction.h │ │ │ ├── LexerMoreAction.cpp │ │ │ ├── LexerMoreAction.h │ │ │ ├── LexerPopModeAction.cpp │ │ │ ├── LexerPopModeAction.h │ │ │ ├── LexerPushModeAction.cpp │ │ │ ├── LexerPushModeAction.h │ │ │ ├── LexerSkipAction.cpp │ │ │ ├── LexerSkipAction.h │ │ │ ├── LexerTypeAction.cpp │ │ │ ├── LexerTypeAction.h │ │ │ ├── LookaheadEventInfo.cpp │ │ │ ├── LookaheadEventInfo.h │ │ │ ├── LoopEndState.cpp │ │ │ ├── LoopEndState.h │ │ │ ├── Makefile │ │ │ ├── NotSetTransition.cpp │ │ │ ├── NotSetTransition.h │ │ │ ├── OrderedATNConfigSet.cpp │ │ │ ├── OrderedATNConfigSet.h │ │ │ ├── ParseInfo.cpp │ │ │ ├── ParseInfo.h │ │ │ ├── ParserATNSimulator.cpp │ │ │ ├── ParserATNSimulator.h │ │ │ ├── PlusBlockStartState.cpp │ │ │ ├── PlusBlockStartState.h │ │ │ ├── PlusLoopbackState.cpp │ │ │ ├── PlusLoopbackState.h │ │ │ ├── PrecedencePredicateTransition.cpp │ │ │ ├── PrecedencePredicateTransition.h │ │ │ ├── PredicateEvalInfo.cpp │ │ │ ├── PredicateEvalInfo.h │ │ │ ├── PredicateTransition.cpp │ │ │ ├── PredicateTransition.h │ │ │ ├── PredictionContext.cpp │ │ │ ├── PredictionContext.h │ │ │ ├── PredictionMode.cpp │ │ │ ├── PredictionMode.h │ │ │ ├── ProfilingATNSimulator.cpp │ │ │ ├── ProfilingATNSimulator.h │ │ │ ├── RangeTransition.cpp │ │ │ ├── RangeTransition.h │ │ │ ├── RuleStartState.cpp │ │ │ ├── RuleStartState.h │ │ │ ├── RuleStopState.cpp │ │ │ ├── RuleStopState.h │ │ │ ├── RuleTransition.cpp │ │ │ ├── RuleTransition.h │ │ │ ├── SemanticContext.cpp │ │ │ ├── SemanticContext.h │ │ │ ├── SetTransition.cpp │ │ │ ├── SetTransition.h │ │ │ ├── SingletonPredictionContext.cpp │ │ │ ├── SingletonPredictionContext.h │ │ │ ├── StarBlockStartState.cpp │ │ │ ├── StarBlockStartState.h │ │ │ ├── StarLoopEntryState.cpp │ │ │ ├── StarLoopEntryState.h │ │ │ ├── StarLoopbackState.cpp │ │ │ ├── StarLoopbackState.h │ │ │ ├── TokensStartState.cpp │ │ │ ├── TokensStartState.h │ │ │ ├── Transition.cpp │ │ │ ├── Transition.h │ │ │ ├── WildcardTransition.cpp │ │ │ └── WildcardTransition.h │ │ ├── dfa │ │ │ ├── DFA.cpp │ │ │ ├── DFA.h │ │ │ ├── DFASerializer.cpp │ │ │ ├── DFASerializer.h │ │ │ ├── DFAState.cpp │ │ │ ├── DFAState.h │ │ │ ├── LexerDFASerializer.cpp │ │ │ └── LexerDFASerializer.h │ │ ├── misc │ │ │ ├── InterpreterDataReader.cpp │ │ │ ├── InterpreterDataReader.h │ │ │ ├── Interval.cpp │ │ │ ├── Interval.h │ │ │ ├── IntervalSet.cpp │ │ │ ├── IntervalSet.h │ │ │ ├── MurmurHash.cpp │ │ │ ├── MurmurHash.h │ │ │ ├── Predicate.cpp │ │ │ └── Predicate.h │ │ ├── support │ │ │ ├── Any.cpp │ │ │ ├── Any.h │ │ │ ├── Arrays.cpp │ │ │ ├── Arrays.h │ │ │ ├── BitSet.h │ │ │ ├── CPPUtils.cpp │ │ │ ├── CPPUtils.h │ │ │ ├── Declarations.h │ │ │ ├── StringUtils.cpp │ │ │ ├── StringUtils.h │ │ │ ├── guid.cpp │ │ │ └── guid.h │ │ └── tree │ │ │ ├── AbstractParseTreeVisitor.h │ │ │ ├── ErrorNode.cpp │ │ │ ├── ErrorNode.h │ │ │ ├── ErrorNodeImpl.cpp │ │ │ ├── ErrorNodeImpl.h │ │ │ ├── IterativeParseTreeWalker.cpp │ │ │ ├── IterativeParseTreeWalker.h │ │ │ ├── ParseTree.cpp │ │ │ ├── ParseTree.h │ │ │ ├── ParseTreeListener.cpp │ │ │ ├── ParseTreeListener.h │ │ │ ├── ParseTreeProperty.h │ │ │ ├── ParseTreeVisitor.cpp │ │ │ ├── ParseTreeVisitor.h │ │ │ ├── ParseTreeWalker.cpp │ │ │ ├── ParseTreeWalker.h │ │ │ ├── TerminalNode.cpp │ │ │ ├── TerminalNode.h │ │ │ ├── TerminalNodeImpl.cpp │ │ │ ├── TerminalNodeImpl.h │ │ │ ├── Trees.cpp │ │ │ ├── Trees.h │ │ │ ├── pattern │ │ │ ├── Chunk.cpp │ │ │ ├── Chunk.h │ │ │ ├── ParseTreeMatch.cpp │ │ │ ├── ParseTreeMatch.h │ │ │ ├── ParseTreePattern.cpp │ │ │ ├── ParseTreePattern.h │ │ │ ├── ParseTreePatternMatcher.cpp │ │ │ ├── ParseTreePatternMatcher.h │ │ │ ├── RuleTagToken.cpp │ │ │ ├── RuleTagToken.h │ │ │ ├── TagChunk.cpp │ │ │ ├── TagChunk.h │ │ │ ├── TextChunk.cpp │ │ │ ├── TextChunk.h │ │ │ ├── TokenTagToken.cpp │ │ │ └── TokenTagToken.h │ │ │ └── xpath │ │ │ ├── XPath.cpp │ │ │ ├── XPath.h │ │ │ ├── XPathElement.cpp │ │ │ ├── XPathElement.h │ │ │ ├── XPathLexer.cpp │ │ │ ├── XPathLexer.g4 │ │ │ ├── XPathLexer.h │ │ │ ├── XPathLexerErrorListener.cpp │ │ │ ├── XPathLexerErrorListener.h │ │ │ ├── XPathRuleAnywhereElement.cpp │ │ │ ├── XPathRuleAnywhereElement.h │ │ │ ├── XPathRuleElement.cpp │ │ │ ├── XPathRuleElement.h │ │ │ ├── XPathTokenAnywhereElement.cpp │ │ │ ├── XPathTokenAnywhereElement.h │ │ │ ├── XPathTokenElement.cpp │ │ │ ├── XPathTokenElement.h │ │ │ ├── XPathWildcardAnywhereElement.cpp │ │ │ ├── XPathWildcardAnywhereElement.h │ │ │ ├── XPathWildcardElement.cpp │ │ │ └── XPathWildcardElement.h │ ├── flex-examples │ │ ├── Makefile │ │ ├── README │ │ ├── expr.c │ │ ├── expr.in │ │ ├── expr.lex │ │ └── lex.yy.c │ ├── labLexer │ │ ├── .gitignore │ │ ├── CMakeLists-1.txt │ │ ├── CMakeLists-3.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── cmake │ │ │ └── FindANTLR.cmake │ │ ├── doc │ │ │ ├── labLexer-1.md │ │ │ ├── labLexer-2.md │ │ │ └── labLexer-3.md │ │ ├── grammar │ │ │ ├── labLexer.g4 │ │ │ └── relop.lex │ │ ├── src │ │ │ ├── labLexer-1-parser.hpp │ │ │ ├── labLexer-1.c │ │ │ ├── labLexer-1.cpp │ │ │ ├── labLexer-2.c │ │ │ ├── labLexer-2.cpp │ │ │ ├── labLexer-3.cpp │ │ │ └── lex.yy.c │ │ └── test │ │ │ └── labLexer-1-test.cpp │ └── pl0 │ │ ├── Makefile │ │ ├── README │ │ ├── doc │ │ └── pl0.pdf │ │ ├── include │ │ └── pl0.h │ │ ├── make.simple │ │ ├── sample │ │ ├── multiply.pl0 │ │ ├── multiply.res │ │ ├── tests.pl0 │ │ └── tests.res │ │ └── src │ │ └── pl0.c ├── pw3 │ ├── Examples │ │ ├── auto_ptr.cpp │ │ ├── shared_ptr.cpp │ │ ├── unique_ptr.cpp │ │ └── weak_ptr.cpp │ └── src │ │ ├── step1 │ │ ├── answer.md │ │ ├── test1.cpp │ │ └── test2.cpp │ │ └── step2 │ │ ├── answer.md │ │ └── test1.cpp ├── pw4 │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── SysYF语言定义.pdf │ ├── doc │ │ └── AST.md │ ├── grammar │ │ ├── sysyfParser.yy │ │ └── sysyfScanner.ll │ ├── include │ │ ├── ErrorReporter.h │ │ ├── SyntaxTree.h │ │ ├── SyntaxTreePrinter.h │ │ ├── sysyfDriver.h │ │ └── sysyfFlexLexer.h │ ├── src │ │ ├── ErrorReporter.cpp │ │ ├── SyntaxTree.cpp │ │ ├── SyntaxTreePrinter.cpp │ │ ├── main.cpp │ │ └── sysyfDriver.cpp │ ├── task1.md │ └── task2.md ├── pw5 │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── SysYF语言定义.pdf │ ├── doc │ │ ├── AST.md │ │ └── answer.md │ ├── figs │ │ └── UML.png │ ├── grammar │ │ ├── sysyfParser.yy │ │ └── sysyfScanner.ll │ ├── include │ │ ├── ErrorReporter.h │ │ ├── SyntaxTree.h │ │ ├── SyntaxTreeChecker.h │ │ ├── SyntaxTreePrinter.h │ │ ├── sysyfDriver.h │ │ └── sysyfFlexLexer.h │ ├── src │ │ ├── ErrorReporter.cpp │ │ ├── SyntaxTree.cpp │ │ ├── SyntaxTreeChecker.cpp │ │ ├── SyntaxTreePrinter.cpp │ │ ├── main.cpp │ │ └── sysyfDriver.cpp │ ├── task1.md │ ├── task2.md │ ├── task3.md │ ├── test │ │ ├── subprocess.h │ │ ├── task2 │ │ │ ├── 01.out │ │ │ ├── 01.sy │ │ │ ├── 02.out │ │ │ ├── 02.sy │ │ │ ├── 03.out │ │ │ ├── 03.sy │ │ │ ├── 04.out │ │ │ ├── 04.sy │ │ │ ├── 05.out │ │ │ ├── 05.sy │ │ │ ├── 06.out │ │ │ ├── 06.sy │ │ │ ├── 07.out │ │ │ ├── 07.sy │ │ │ ├── 11.out │ │ │ ├── 11.sy │ │ │ ├── 12.out │ │ │ ├── 12.sy │ │ │ ├── 13.out │ │ │ ├── 13.sy │ │ │ ├── 14.out │ │ │ ├── 14.sy │ │ │ ├── 15.out │ │ │ ├── 15.sy │ │ │ ├── 16.out │ │ │ ├── 16.sy │ │ │ ├── 17.out │ │ │ └── 17.sy │ │ ├── task3 │ │ │ ├── 01.out │ │ │ ├── 01.sy │ │ │ ├── 02.out │ │ │ ├── 02.sy │ │ │ ├── 03.out │ │ │ ├── 03.sy │ │ │ ├── 04.out │ │ │ ├── 04.sy │ │ │ ├── 05.out │ │ │ ├── 05.sy │ │ │ ├── 06.out │ │ │ ├── 06.sy │ │ │ ├── 07.out │ │ │ └── 07.sy │ │ └── test.cpp │ └── testcase.sy └── pw7 │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── Student │ ├── task1 │ │ ├── demo │ │ │ └── go_upstairs.c │ │ └── sy │ │ │ ├── assign_test.sy │ │ │ ├── func_test.sy │ │ │ ├── if_test.sy │ │ │ ├── io.in │ │ │ ├── io.out │ │ │ ├── io.sy │ │ │ └── while_test.sy │ ├── task2 │ │ ├── CMakeLists.txt │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── assign_gen.cpp │ │ │ ├── func_gen.cpp │ │ │ ├── if_gen.cpp │ │ │ ├── io_gen.cpp │ │ │ ├── qsort_gen.cpp │ │ │ └── while_gen.cpp │ │ ├── demo │ │ │ ├── CMakeLists.txt │ │ │ ├── go_upstairs.sy │ │ │ └── go_upstairs_gen.cpp │ │ └── sy │ │ │ ├── assign_test.sy │ │ │ ├── func_test.sy │ │ │ ├── if_test.sy │ │ │ ├── io.in │ │ │ ├── io.out │ │ │ ├── io.sy │ │ │ ├── qsort.in │ │ │ ├── qsort.out │ │ │ ├── qsort.sy │ │ │ └── while_test.sy │ ├── task3 │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── include │ │ │ ├── Driver │ │ │ │ └── driver.h │ │ │ ├── IR │ │ │ │ ├── gcd_generator.hpp │ │ │ │ └── qs_generator.hpp │ │ │ └── runtime │ │ │ │ ├── io.h │ │ │ │ └── runtime.h │ │ ├── main.cpp │ │ ├── src │ │ │ ├── Driver │ │ │ │ └── driver.cpp │ │ │ └── runtime │ │ │ │ ├── io.cpp │ │ │ │ └── runtime.cpp │ │ └── tests │ │ │ ├── helloworld.c │ │ │ ├── quicksort.c │ │ │ ├── quicksort_1024.in │ │ │ ├── quicksort_1024.out │ │ │ ├── quicksort_2048.in │ │ │ ├── quicksort_2048.out │ │ │ ├── quicksort_3072.in │ │ │ ├── quicksort_3072.out │ │ │ ├── quicksort_4096.in │ │ │ └── quicksort_4096.out │ └── task4 │ │ ├── test.py │ │ └── test │ │ ├── 01_main.out │ │ ├── 01_main.sy │ │ ├── 02_var_defn.out │ │ ├── 02_var_defn.sy │ │ ├── 03_empty_stmt.out │ │ ├── 03_empty_stmt.sy │ │ ├── 04_arr_defn.out │ │ ├── 04_arr_defn.sy │ │ ├── 05_arr_assign.out │ │ ├── 05_arr_assign.sy │ │ ├── 06_const_defn.out │ │ ├── 06_const_defn.sy │ │ ├── 07_const_array_defn.out │ │ ├── 07_const_array_defn.sy │ │ ├── 08_var_defn_func.out │ │ ├── 08_var_defn_func.sy │ │ ├── 09_void_func.out │ │ ├── 09_void_func.sy │ │ ├── 10_if.out │ │ ├── 10_if.sy │ │ ├── 11_if_else.out │ │ ├── 11_if_else.sy │ │ ├── 12_while.out │ │ ├── 12_while.sy │ │ ├── 13_break.out │ │ ├── 13_break.sy │ │ ├── 14_continue.out │ │ ├── 14_continue.sy │ │ ├── 15_getint.in │ │ ├── 15_getint.out │ │ ├── 15_getint.sy │ │ ├── 16_func_test.out │ │ ├── 16_func_test.sy │ │ ├── 17_equal.in │ │ ├── 17_equal.out │ │ ├── 17_equal.sy │ │ ├── 18_scope.out │ │ ├── 18_scope.sy │ │ ├── 19_gcd.in │ │ ├── 19_gcd.out │ │ ├── 19_gcd.sy │ │ ├── 20_hanoi.in │ │ ├── 20_hanoi.out │ │ └── 20_hanoi.sy │ ├── doc │ ├── AST.md │ ├── SysYFIR.md │ ├── SysYF语言定义.pdf │ ├── figs │ │ ├── DriverArchitecture.png │ │ └── 核心类概念图.png │ ├── phase1.md │ ├── phase2.md │ ├── phase3.md │ ├── phase4.md │ └── runtime.md │ ├── include │ ├── AST │ │ ├── SyntaxTree.h │ │ └── SyntaxTreePrinter.h │ ├── ErrorReporter │ │ └── ErrorReporter.h │ ├── Frontend │ │ ├── FlexLexer.h │ │ ├── SysYFDriver.h │ │ ├── SysYFFlexLexer.h │ │ ├── SysYFParser.h │ │ ├── location.hh │ │ ├── position.hh │ │ └── stack.hh │ ├── SysYFIR │ │ ├── BasicBlock.h │ │ ├── Constant.h │ │ ├── Function.h │ │ ├── GlobalVariable.h │ │ ├── IRPrinter.h │ │ ├── IRStmtBuilder.h │ │ ├── Instruction.h │ │ ├── Module.h │ │ ├── Type.h │ │ ├── User.h │ │ └── Value.h │ └── SysYFIRBuilder │ │ └── IRBuilder.h │ ├── lib │ ├── lib.c │ └── lib.h │ ├── report │ └── report.md │ └── src │ ├── AST │ ├── CMakeLists.txt │ ├── SyntaxTree.cpp │ └── SyntaxTreePrinter.cpp │ ├── ErrorReporter │ ├── CMakeLists.txt │ └── ErrorReporter.cpp │ ├── Frontend │ ├── CMakeLists.txt │ ├── SysYFDriver.cpp │ ├── SysYFParser.cpp │ └── SysYFScanner.cpp │ ├── SysYFIR │ ├── BasicBlock.cpp │ ├── CMakeLists.txt │ ├── Constant.cpp │ ├── Function.cpp │ ├── GlobalVariable.cpp │ ├── IRPrinter.cpp │ ├── Instruction.cpp │ ├── Module.cpp │ ├── Type.cpp │ ├── User.cpp │ └── Value.cpp │ ├── SysYFIRBuilder │ ├── CMakeLists.txt │ └── IRBuilder.cpp │ └── main.cpp ├── 计算机组成原理实验 ├── README.md ├── lab1 │ ├── Lab1_运算器及其应用.pptx │ ├── report.md │ ├── report.pdf │ ├── report │ │ ├── image-20220318105608218.png │ │ ├── image-20220318105843387.png │ │ ├── image-20220318133201437.png │ │ ├── image-20220318133817712.png │ │ ├── image-20220320165200845.png │ │ ├── image-20220320165238733.png │ │ ├── image-20220320171155470.png │ │ ├── image-20220320173251401.png │ │ ├── image-20220320173730831.png │ │ ├── image-20220320173830948.png │ │ ├── image-20220320224128915.png │ │ └── image-20220320224344089.png │ └── srcs │ │ ├── alu-harness.cpp │ │ ├── alu.v │ │ ├── alu.vcd │ │ ├── alu_32 │ │ ├── btn_edge.v │ │ ├── fls-harness.cpp │ │ ├── fls.v │ │ ├── fls.vcd │ │ ├── fls_top.v │ │ └── top.v ├── lab2 │ ├── report.md │ ├── report.pdf │ ├── report │ │ ├── image-20220327232046353.png │ │ ├── image-20220327232257870.png │ │ ├── image-20220328172929359.png │ │ ├── image-20220328174008444.png │ │ ├── image-20220329204946721.png │ │ ├── image-20220329205220771.png │ │ ├── image-20220329213100399.png │ │ ├── image-20220329213344941.png │ │ ├── image-20220330211116486.png │ │ ├── image-20220330211245360.png │ │ ├── image-20220330214147501.png │ │ ├── image-20220330214407319.png │ │ └── image-20220330214558148.png │ └── srcs │ │ ├── btn_edge.v │ │ ├── cons.xdc │ │ ├── extra_block_sim.v │ │ ├── extra_dis_sim.v │ │ ├── extra_sort_module.v │ │ ├── get_x.v │ │ ├── io.v │ │ ├── ram_ip.v │ │ ├── ram_ip_sim.v │ │ ├── register_file.v │ │ ├── register_file.vcd │ │ ├── register_file_harness.cpp │ │ ├── seg_decoder.v │ │ ├── seg_display.v │ │ ├── sort.v │ │ ├── sort_module.v │ │ ├── sort_sim.v │ │ └── sort_sim_harness.cpp ├── lab3 │ ├── report.md │ ├── report.pdf │ ├── report │ │ ├── image-20220406191549582.png │ │ ├── image-20220406191601786.png │ │ ├── image-20220406191657153.png │ │ ├── image-20220406191714659.png │ │ ├── image-20220406191954039.png │ │ ├── image-20220406192012407.png │ │ ├── image-20220406192031909.png │ │ ├── image-20220406192052790.png │ │ ├── image-20220406192645998.png │ │ ├── image-20220406193253328.png │ │ ├── image-20220406193756799.png │ │ ├── image-20220406202625970.png │ │ └── image-20220406213254145.png │ └── src │ │ ├── sort.asm │ │ ├── test.asm │ │ └── test.coe ├── lab4 │ ├── report.md │ ├── report.pdf │ ├── report │ │ ├── 0453026205-3422127500-7148342A75274147888E57BBF68C3531.jpeg │ │ ├── 0453026205-4278284447-9C71B2D141B1AEF1711D1B6027F3BA71.jpeg │ │ ├── 0453026205-4279450192-A422FACEDD276AFF0EB199B4077B4735.jpeg │ │ ├── 0453026205-991342210-57F144C3CF2609B571BAD0B5C3A7A72F.jpeg │ │ ├── image-20220411215503125.png │ │ ├── image-20220418212936290.png │ │ ├── image-20220418212945083.png │ │ ├── image-20220418212955481.png │ │ ├── image-20220418230410781.png │ │ └── image-20220418230522774.png │ └── src │ │ ├── alu.v │ │ ├── control.v │ │ ├── cpu.v │ │ ├── imm_extend.v │ │ ├── mem_wrapper.v │ │ ├── pdu.v │ │ ├── register_file.v │ │ ├── sort.asm │ │ ├── sort_data.coe │ │ ├── sort_text.coe │ │ └── top_cpu.v ├── lab5 │ ├── report.md │ ├── report.pdf │ └── src │ │ ├── EX.v │ │ ├── ID.v │ │ ├── IF.v │ │ ├── MEM.v │ │ ├── WB.v │ │ ├── alu.v │ │ ├── control.v │ │ ├── cpu.v │ │ ├── hazard.v │ │ ├── imm_extend.v │ │ ├── mem_wrapper.v │ │ ├── pdu.v │ │ ├── register_file.v │ │ ├── top.xdc │ │ └── top_cpu.v ├── logo.png └── 实验报告模板.md └── 计算机网络 ├── DNS实验.pdf ├── IP实验.pdf ├── http实验.pdf ├── tcp实验.pdf └── 入门实验.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | venv 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /ICS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/README.md -------------------------------------------------------------------------------- /ICS/hw/hw1/hw01-ans.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw1/hw01-ans.pdf -------------------------------------------------------------------------------- /ICS/hw/hw1/hw01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw1/hw01.md -------------------------------------------------------------------------------- /ICS/hw/hw1/hw01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw1/hw01.pdf -------------------------------------------------------------------------------- /ICS/hw/hw1/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw1/t.png -------------------------------------------------------------------------------- /ICS/hw/hw2/hw02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw2/hw02.md -------------------------------------------------------------------------------- /ICS/hw/hw2/hw02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw2/hw02.pdf -------------------------------------------------------------------------------- /ICS/hw/hw2/images/T8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw2/images/T8.png -------------------------------------------------------------------------------- /ICS/hw/hw3/hw03-ans.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw3/hw03-ans.pdf -------------------------------------------------------------------------------- /ICS/hw/hw3/hw03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw3/hw03.md -------------------------------------------------------------------------------- /ICS/hw/hw3/hw03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw3/hw03.pdf -------------------------------------------------------------------------------- /ICS/hw/hw3/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw3/pic1.png -------------------------------------------------------------------------------- /ICS/hw/hw3/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw3/pic2.png -------------------------------------------------------------------------------- /ICS/hw/hw4/hw04-ans.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw4/hw04-ans.pdf -------------------------------------------------------------------------------- /ICS/hw/hw4/hw04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw4/hw04.md -------------------------------------------------------------------------------- /ICS/hw/hw4/hw04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw4/hw04.pdf -------------------------------------------------------------------------------- /ICS/hw/hw5/hw05-ans.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw5/hw05-ans.pdf -------------------------------------------------------------------------------- /ICS/hw/hw5/hw05.assets/image-20211219200543834.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw5/hw05.assets/image-20211219200543834.png -------------------------------------------------------------------------------- /ICS/hw/hw5/hw05.assets/image-20211219200929374.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw5/hw05.assets/image-20211219200929374.png -------------------------------------------------------------------------------- /ICS/hw/hw5/hw05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw5/hw05.md -------------------------------------------------------------------------------- /ICS/hw/hw5/hw05.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/ICS/hw/hw5/hw05.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # USTC-CS-COURSE-HW 2 | 3 | 保存了个人在 USTC 一些 CS 相关课程的作业及实验。 4 | 5 | 部分课程文件夹内的 README.md 会有进一步说明。 6 | -------------------------------------------------------------------------------- /人工智能基础/README.md: -------------------------------------------------------------------------------- 1 | # 人工智能基础 2 | 3 | 这课似乎每年实验都会换,所以仅供参考。 4 | -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/Makefile -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/input/input0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/input/input0.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/input/input1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/input/input1.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/input/input2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/input/input2.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/input/input3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/input/input3.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/input/input4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/input/input4.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/input/input5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/input/input5.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/input/input6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/input/input6.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/input/input7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/input/input7.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/input/input8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/input/input8.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/input/input9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/input/input9.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/output/output0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/output/output0.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/output/output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/output/output1.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/output/output2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/output/output2.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/output/output3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/output/output3.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/output/output4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/output/output4.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/output/output5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/output/output5.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/output/output6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/output/output6.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/output/output7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/output/output7.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/output/output8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/output/output8.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/output/output9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/output/output9.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/src/astar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/src/astar.cpp -------------------------------------------------------------------------------- /人工智能基础/exp1/astar/src/validate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/astar/src/validate.cpp -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/Makefile -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/input/input0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/input/input0.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/input/input1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/input/input1.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/input/input2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/input/input2.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/input/input3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/input/input3.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/input/input4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/input/input4.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/input/input5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/input/input5.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/input/input6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/input/input6.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/input/input7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/input/input7.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/input/input8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/input/input8.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/input/input9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/input/input9.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/output/output0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/output/output0.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/output/output1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/output/output1.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/output/output2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/output/output2.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/output/output3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/output/output3.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/output/output4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/output/output4.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/output/output5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/output/output5.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/output/output6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/output/output6.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/output/output7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/output/output7.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/output/output8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/output/output8.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/output/output9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/output/output9.txt -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/src/csp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/src/csp.cpp -------------------------------------------------------------------------------- /人工智能基础/exp1/csp/src/csp_validate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/csp/src/csp_validate.cpp -------------------------------------------------------------------------------- /人工智能基础/exp1/exp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/exp.pdf -------------------------------------------------------------------------------- /人工智能基础/exp1/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp1/report.pdf -------------------------------------------------------------------------------- /人工智能基础/exp2/Bayesian-network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp2/Bayesian-network.py -------------------------------------------------------------------------------- /人工智能基础/exp2/KMeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp2/KMeans.py -------------------------------------------------------------------------------- /人工智能基础/exp2/docs_exp2_ai2023sp_ustc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp2/docs_exp2_ai2023sp_ustc.pdf -------------------------------------------------------------------------------- /人工智能基础/exp2/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp2/input.txt -------------------------------------------------------------------------------- /人工智能基础/exp2/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp2/report.pdf -------------------------------------------------------------------------------- /人工智能基础/exp2/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/人工智能基础/exp2/train.py -------------------------------------------------------------------------------- /体系结构/Lab5/Lab5-数据级并行.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/体系结构/Lab5/Lab5-数据级并行.md -------------------------------------------------------------------------------- /体系结构/Lab5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/体系结构/Lab5/Makefile -------------------------------------------------------------------------------- /体系结构/Lab5/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/体系结构/Lab5/report.md -------------------------------------------------------------------------------- /体系结构/Lab5/src_cpu/cpu_avx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/体系结构/Lab5/src_cpu/cpu_avx.c -------------------------------------------------------------------------------- /体系结构/Lab5/src_cpu/cpu_avx_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/体系结构/Lab5/src_cpu/cpu_avx_block.c -------------------------------------------------------------------------------- /体系结构/Lab5/src_cpu/cpu_baseline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/体系结构/Lab5/src_cpu/cpu_baseline.c -------------------------------------------------------------------------------- /体系结构/Lab5/src_gpu/gpu_baseline.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/体系结构/Lab5/src_gpu/gpu_baseline.cu -------------------------------------------------------------------------------- /体系结构/Lab5/src_gpu/gpu_block.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/体系结构/Lab5/src_gpu/gpu_block.cu -------------------------------------------------------------------------------- /体系结构/Lab5/time_gpu_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/体系结构/Lab5/time_gpu_baseline.py -------------------------------------------------------------------------------- /体系结构/Lab5/time_gpu_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/体系结构/Lab5/time_gpu_block.py -------------------------------------------------------------------------------- /体系结构/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/体系结构/README.md -------------------------------------------------------------------------------- /操作系统H实验/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/操作系统H实验/README.md -------------------------------------------------------------------------------- /数字电路实验/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/README.md -------------------------------------------------------------------------------- /数字电路实验/lab02/lab02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab02/lab02.md -------------------------------------------------------------------------------- /数字电路实验/lab02/pic/c01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab02/pic/c01.png -------------------------------------------------------------------------------- /数字电路实验/lab02/pic/c02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab02/pic/c02.png -------------------------------------------------------------------------------- /数字电路实验/lab02/pic/c03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab02/pic/c03.png -------------------------------------------------------------------------------- /数字电路实验/lab02/pic/c04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab02/pic/c04.png -------------------------------------------------------------------------------- /数字电路实验/lab02/pic/c05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab02/pic/c05.png -------------------------------------------------------------------------------- /数字电路实验/lab02/pic/c06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab02/pic/c06.png -------------------------------------------------------------------------------- /数字电路实验/lab02/pic/c07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab02/pic/c07.png -------------------------------------------------------------------------------- /数字电路实验/lab02/pic/c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab02/pic/c08.png -------------------------------------------------------------------------------- /数字电路实验/lab02/pic/c09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab02/pic/c09.png -------------------------------------------------------------------------------- /数字电路实验/lab02/pic/c10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab02/pic/c10.png -------------------------------------------------------------------------------- /数字电路实验/lab02/pic/c11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab02/pic/c11.png -------------------------------------------------------------------------------- /数字电路实验/lab02/pic/cf1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab02/pic/cf1.png -------------------------------------------------------------------------------- /数字电路实验/lab02/pic/cf2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab02/pic/cf2.png -------------------------------------------------------------------------------- /数字电路实验/lab02/实验02_简单组合逻辑电路.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab02/实验02_简单组合逻辑电路.pdf -------------------------------------------------------------------------------- /数字电路实验/lab02/实验2-PB20000180-刘良宇.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab02/实验2-PB20000180-刘良宇.pdf -------------------------------------------------------------------------------- /数字电路实验/lab03/lab03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab03/lab03.md -------------------------------------------------------------------------------- /数字电路实验/lab03/pic/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab03/pic/1.png -------------------------------------------------------------------------------- /数字电路实验/lab03/pic/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab03/pic/2.png -------------------------------------------------------------------------------- /数字电路实验/lab03/pic/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab03/pic/3.png -------------------------------------------------------------------------------- /数字电路实验/lab03/pic/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab03/pic/4.png -------------------------------------------------------------------------------- /数字电路实验/lab03/pic/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab03/pic/5.png -------------------------------------------------------------------------------- /数字电路实验/lab03/pic/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab03/pic/6.png -------------------------------------------------------------------------------- /数字电路实验/lab03/pic/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab03/pic/7.png -------------------------------------------------------------------------------- /数字电路实验/lab03/pic/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab03/pic/8.png -------------------------------------------------------------------------------- /数字电路实验/lab03/pic/t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab03/pic/t1.png -------------------------------------------------------------------------------- /数字电路实验/lab03/pic/t2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab03/pic/t2.png -------------------------------------------------------------------------------- /数字电路实验/lab03/pic/t3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab03/pic/t3-1.png -------------------------------------------------------------------------------- /数字电路实验/lab03/pic/t3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab03/pic/t3-2.png -------------------------------------------------------------------------------- /数字电路实验/lab03/pic/t4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab03/pic/t4-1.png -------------------------------------------------------------------------------- /数字电路实验/lab03/pic/t4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab03/pic/t4-2.png -------------------------------------------------------------------------------- /数字电路实验/lab03/pic/t5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab03/pic/t5.png -------------------------------------------------------------------------------- /数字电路实验/lab03/实验03_简单时序逻辑电路.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab03/实验03_简单时序逻辑电路.pdf -------------------------------------------------------------------------------- /数字电路实验/lab03/实验3-PB20000180-刘良宇.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab03/实验3-PB20000180-刘良宇.pdf -------------------------------------------------------------------------------- /数字电路实验/lab04/lab04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab04/lab04.md -------------------------------------------------------------------------------- /数字电路实验/lab04/实验04_Verilog硬件描述语言.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab04/实验04_Verilog硬件描述语言.pdf -------------------------------------------------------------------------------- /数字电路实验/lab04/实验4-PB20000180-刘良宇.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab04/实验4-PB20000180-刘良宇.pdf -------------------------------------------------------------------------------- /数字电路实验/lab05/image/t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab05/image/t1.png -------------------------------------------------------------------------------- /数字电路实验/lab05/image/t2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab05/image/t2.png -------------------------------------------------------------------------------- /数字电路实验/lab05/image/t3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab05/image/t3.png -------------------------------------------------------------------------------- /数字电路实验/lab05/image/t4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab05/image/t4.png -------------------------------------------------------------------------------- /数字电路实验/lab05/lab05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab05/lab05.md -------------------------------------------------------------------------------- /数字电路实验/lab05/实验05_使用Vivado进行仿真.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab05/实验05_使用Vivado进行仿真.pdf -------------------------------------------------------------------------------- /数字电路实验/lab05/实验5-PB20000180-刘良宇.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab05/实验5-PB20000180-刘良宇.pdf -------------------------------------------------------------------------------- /数字电路实验/lab06/image/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab06/image/1.png -------------------------------------------------------------------------------- /数字电路实验/lab06/image/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab06/image/2.png -------------------------------------------------------------------------------- /数字电路实验/lab06/image/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab06/image/3.png -------------------------------------------------------------------------------- /数字电路实验/lab06/lab06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab06/lab06.md -------------------------------------------------------------------------------- /数字电路实验/lab06/实验06_FPGA原理及Vivado综合.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab06/实验06_FPGA原理及Vivado综合.pdf -------------------------------------------------------------------------------- /数字电路实验/lab06/实验6-PB20000180-刘良宇.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab06/实验6-PB20000180-刘良宇.pdf -------------------------------------------------------------------------------- /数字电路实验/lab07/image/lcd3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab07/image/lcd3.png -------------------------------------------------------------------------------- /数字电路实验/lab07/image/led1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab07/image/led1.png -------------------------------------------------------------------------------- /数字电路实验/lab07/image/led2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab07/image/led2.png -------------------------------------------------------------------------------- /数字电路实验/lab07/image/rom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab07/image/rom.png -------------------------------------------------------------------------------- /数字电路实验/lab07/image/xdc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab07/image/xdc1.png -------------------------------------------------------------------------------- /数字电路实验/lab07/image/xdc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab07/image/xdc2.png -------------------------------------------------------------------------------- /数字电路实验/lab07/lab07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab07/lab07.md -------------------------------------------------------------------------------- /数字电路实验/lab07/实验07_FPGA实验平台及IP核使用.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab07/实验07_FPGA实验平台及IP核使用.pdf -------------------------------------------------------------------------------- /数字电路实验/lab07/实验7-PB20000180-刘良宇.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab07/实验7-PB20000180-刘良宇.pdf -------------------------------------------------------------------------------- /数字电路实验/lab08/image/logisim1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab08/image/logisim1.png -------------------------------------------------------------------------------- /数字电路实验/lab08/image/logisim2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab08/image/logisim2.png -------------------------------------------------------------------------------- /数字电路实验/lab08/image/t3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab08/image/t3.png -------------------------------------------------------------------------------- /数字电路实验/lab08/image/xdc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab08/image/xdc1.png -------------------------------------------------------------------------------- /数字电路实验/lab08/lab08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab08/lab08.md -------------------------------------------------------------------------------- /数字电路实验/lab08/实验08_信号处理及有限状态机.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab08/实验08_信号处理及有限状态机.pdf -------------------------------------------------------------------------------- /数字电路实验/lab08/实验8-PB20000180-刘良宇.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/lab08/实验8-PB20000180-刘良宇.pdf -------------------------------------------------------------------------------- /数字电路实验/labS/image/add1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/image/add1.png -------------------------------------------------------------------------------- /数字电路实验/labS/image/add2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/image/add2.png -------------------------------------------------------------------------------- /数字电路实验/labS/image/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/image/before.png -------------------------------------------------------------------------------- /数字电路实验/labS/image/beforem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/image/beforem.png -------------------------------------------------------------------------------- /数字电路实验/labS/image/fib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/image/fib.png -------------------------------------------------------------------------------- /数字电路实验/labS/image/fib7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/image/fib7.png -------------------------------------------------------------------------------- /数字电路实验/labS/image/fib9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/image/fib9.png -------------------------------------------------------------------------------- /数字电路实验/labS/image/lc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/image/lc3.png -------------------------------------------------------------------------------- /数字电路实验/labS/image/m1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/image/m1.png -------------------------------------------------------------------------------- /数字电路实验/labS/image/m2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/image/m2.png -------------------------------------------------------------------------------- /数字电路实验/labS/image/minus1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/image/minus1.png -------------------------------------------------------------------------------- /数字电路实验/labS/image/multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/image/multi.png -------------------------------------------------------------------------------- /数字电路实验/labS/image/op.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/image/op.png -------------------------------------------------------------------------------- /数字电路实验/labS/image/ram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/image/ram.png -------------------------------------------------------------------------------- /数字电路实验/labS/image/write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/image/write.png -------------------------------------------------------------------------------- /数字电路实验/labS/labS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/labS.md -------------------------------------------------------------------------------- /数字电路实验/labS/src/bytestohex.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/src/bytestohex.v -------------------------------------------------------------------------------- /数字电路实验/labS/src/rx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/src/rx.v -------------------------------------------------------------------------------- /数字电路实验/labS/src/top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/src/top.v -------------------------------------------------------------------------------- /数字电路实验/labS/实验10-PB20000180-刘良宇.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/实验10-PB20000180-刘良宇.pdf -------------------------------------------------------------------------------- /数字电路实验/labS/实验10_综合实验.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/实验10_综合实验.pdf -------------------------------------------------------------------------------- /数字电路实验/labS/远程实验串口.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/labS/远程实验串口.pdf -------------------------------------------------------------------------------- /数字电路实验/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/logo.png -------------------------------------------------------------------------------- /数字电路实验/实验报告模板.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数字电路实验/实验报告模板.md -------------------------------------------------------------------------------- /数据库实验/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据库实验/README.md -------------------------------------------------------------------------------- /数据库实验/lab1/borrow_book.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据库实验/lab1/borrow_book.sql -------------------------------------------------------------------------------- /数据库实验/lab1/init_table_and_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据库实验/lab1/init_table_and_data.sql -------------------------------------------------------------------------------- /数据库实验/lab1/query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据库实验/lab1/query.sql -------------------------------------------------------------------------------- /数据库实验/lab1/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据库实验/lab1/report.md -------------------------------------------------------------------------------- /数据库实验/lab1/return_book.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据库实验/lab1/return_book.sql -------------------------------------------------------------------------------- /数据库实验/lab1/trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据库实验/lab1/trigger.sql -------------------------------------------------------------------------------- /数据库实验/lab1/update_reader_id.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据库实验/lab1/update_reader_id.sql -------------------------------------------------------------------------------- /数据库实验/lab2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据库实验/lab2.pdf -------------------------------------------------------------------------------- /数据结构/hw1-多项式计算器/back-end/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/hw1-多项式计算器/back-end/main.cpp -------------------------------------------------------------------------------- /数据结构/hw1-多项式计算器/back-end/poly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/hw1-多项式计算器/back-end/poly.php -------------------------------------------------------------------------------- /数据结构/hw1-多项式计算器/front-end/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/hw1-多项式计算器/front-end/index.html -------------------------------------------------------------------------------- /数据结构/hw1-多项式计算器/front-end/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/hw1-多项式计算器/front-end/main.css -------------------------------------------------------------------------------- /数据结构/hw1-多项式计算器/front-end/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/hw1-多项式计算器/front-end/main.js -------------------------------------------------------------------------------- /数据结构/大作业1-离散事件模拟/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/大作业1-离散事件模拟/readme.md -------------------------------------------------------------------------------- /数据结构/大作业1-离散事件模拟/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/大作业1-离散事件模拟/report.pdf -------------------------------------------------------------------------------- /数据结构/大作业1-离散事件模拟/离散事件模拟.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/大作业1-离散事件模拟/离散事件模拟.pdf -------------------------------------------------------------------------------- /数据结构/大作业2-Huffman编码压缩-解压器/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/大作业2-Huffman编码压缩-解压器/readme.md -------------------------------------------------------------------------------- /数据结构/平时作业/hw10/hw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw10/hw.cpp -------------------------------------------------------------------------------- /数据结构/平时作业/hw10/hw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw10/hw.md -------------------------------------------------------------------------------- /数据结构/平时作业/hw10/hw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw10/hw.pdf -------------------------------------------------------------------------------- /数据结构/平时作业/hw11/hw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw11/hw.cpp -------------------------------------------------------------------------------- /数据结构/平时作业/hw11/hw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw11/hw.md -------------------------------------------------------------------------------- /数据结构/平时作业/hw11/hw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw11/hw.pdf -------------------------------------------------------------------------------- /数据结构/平时作业/hw12/hw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw12/hw.cpp -------------------------------------------------------------------------------- /数据结构/平时作业/hw12/hw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw12/hw.md -------------------------------------------------------------------------------- /数据结构/平时作业/hw12/hw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw12/hw.pdf -------------------------------------------------------------------------------- /数据结构/平时作业/hw13/hw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw13/hw.md -------------------------------------------------------------------------------- /数据结构/平时作业/hw13/hw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw13/hw.pdf -------------------------------------------------------------------------------- /数据结构/平时作业/hw14/hw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw14/hw.cpp -------------------------------------------------------------------------------- /数据结构/平时作业/hw14/hw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw14/hw.md -------------------------------------------------------------------------------- /数据结构/平时作业/hw14/hw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw14/hw.pdf -------------------------------------------------------------------------------- /数据结构/平时作业/hw4/作业.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw4/作业.cpp -------------------------------------------------------------------------------- /数据结构/平时作业/hw4/作业.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw4/作业.md -------------------------------------------------------------------------------- /数据结构/平时作业/hw4/作业.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw4/作业.pdf -------------------------------------------------------------------------------- /数据结构/平时作业/hw5/hw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw5/hw.cpp -------------------------------------------------------------------------------- /数据结构/平时作业/hw5/hw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw5/hw.md -------------------------------------------------------------------------------- /数据结构/平时作业/hw5/hw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw5/hw.pdf -------------------------------------------------------------------------------- /数据结构/平时作业/hw6/hw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw6/hw.cpp -------------------------------------------------------------------------------- /数据结构/平时作业/hw6/hw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw6/hw.md -------------------------------------------------------------------------------- /数据结构/平时作业/hw6/hw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw6/hw.pdf -------------------------------------------------------------------------------- /数据结构/平时作业/hw7/hw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw7/hw.cpp -------------------------------------------------------------------------------- /数据结构/平时作业/hw7/hw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw7/hw.md -------------------------------------------------------------------------------- /数据结构/平时作业/hw7/hw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw7/hw.pdf -------------------------------------------------------------------------------- /数据结构/平时作业/hw8/hw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw8/hw.cpp -------------------------------------------------------------------------------- /数据结构/平时作业/hw8/hw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw8/hw.md -------------------------------------------------------------------------------- /数据结构/平时作业/hw8/hw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw8/hw.pdf -------------------------------------------------------------------------------- /数据结构/平时作业/hw9/hw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw9/hw.cpp -------------------------------------------------------------------------------- /数据结构/平时作业/hw9/hw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw9/hw.md -------------------------------------------------------------------------------- /数据结构/平时作业/hw9/hw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/hw9/hw.pdf -------------------------------------------------------------------------------- /数据结构/平时作业/数据结构题集 (C语言版).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/数据结构/平时作业/数据结构题集 (C语言版).pdf -------------------------------------------------------------------------------- /机器学习概论实验/LAB1_PB20000180/Loan.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/机器学习概论实验/LAB1_PB20000180/Loan.ipynb -------------------------------------------------------------------------------- /机器学习概论实验/LAB1_PB20000180/Logistic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/机器学习概论实验/LAB1_PB20000180/Logistic.py -------------------------------------------------------------------------------- /机器学习概论实验/LAB1_PB20000180/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/机器学习概论实验/LAB1_PB20000180/ReadMe.md -------------------------------------------------------------------------------- /机器学习概论实验/LAB1_PB20000180/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/机器学习概论实验/LAB1_PB20000180/Report.pdf -------------------------------------------------------------------------------- /机器学习概论实验/LAB1_PB20000180/loan.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/机器学习概论实验/LAB1_PB20000180/loan.csv -------------------------------------------------------------------------------- /程序设计/1.1输出三角形.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/1.1输出三角形.c -------------------------------------------------------------------------------- /程序设计/1.2一元二次方程.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/1.2一元二次方程.c -------------------------------------------------------------------------------- /程序设计/10.1.向无尽的大雨献上花束(雾)-环形链表.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/10.1.向无尽的大雨献上花束(雾)-环形链表.c -------------------------------------------------------------------------------- /程序设计/10.1.向无尽的大雨献上花束(雾)-递归DFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/10.1.向无尽的大雨献上花束(雾)-递归DFS.c -------------------------------------------------------------------------------- /程序设计/10.1.向无尽的大雨献上花束(雾)-非递归DFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/10.1.向无尽的大雨献上花束(雾)-非递归DFS.c -------------------------------------------------------------------------------- /程序设计/2.1整数商和商.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/2.1整数商和商.c -------------------------------------------------------------------------------- /程序设计/2.2圆周长和面积.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/2.2圆周长和面积.c -------------------------------------------------------------------------------- /程序设计/2.3三角形面积.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/2.3三角形面积.c -------------------------------------------------------------------------------- /程序设计/2.extra我的名字.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/2.extra我的名字.c -------------------------------------------------------------------------------- /程序设计/3.1搜索最长连续数.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/3.1搜索最长连续数.c -------------------------------------------------------------------------------- /程序设计/3.2素数输出.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/3.2素数输出.c -------------------------------------------------------------------------------- /程序设计/3.3计算M到N的水仙花数.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/3.3计算M到N的水仙花数.c -------------------------------------------------------------------------------- /程序设计/4.1从M到N的回文数.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/4.1从M到N的回文数.c -------------------------------------------------------------------------------- /程序设计/4.2计算阶乘后的零的个数.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/4.2计算阶乘后的零的个数.c -------------------------------------------------------------------------------- /程序设计/4.3两整数求和.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/4.3两整数求和.c -------------------------------------------------------------------------------- /程序设计/5.1合法输入串.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/5.1合法输入串.c -------------------------------------------------------------------------------- /程序设计/5.2求sin(x)的近似值.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/5.2求sin(x)的近似值.c -------------------------------------------------------------------------------- /程序设计/6.1转圈圈.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/6.1转圈圈.c -------------------------------------------------------------------------------- /程序设计/6.2叶氏筛法.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/6.2叶氏筛法.c -------------------------------------------------------------------------------- /程序设计/6.3终极捡钱抓锚Tm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/6.3终极捡钱抓锚Tm.c -------------------------------------------------------------------------------- /程序设计/7.1内存分配.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/7.1内存分配.c -------------------------------------------------------------------------------- /程序设计/7.2二维池化运算.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/7.2二维池化运算.c -------------------------------------------------------------------------------- /程序设计/7.3计算组合个数.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/7.3计算组合个数.c -------------------------------------------------------------------------------- /程序设计/8.1插入字符.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/8.1插入字符.c -------------------------------------------------------------------------------- /程序设计/8.2顺时针打印二维数组.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/8.2顺时针打印二维数组.c -------------------------------------------------------------------------------- /程序设计/8.3最上川-递归DFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/8.3最上川-递归DFS.c -------------------------------------------------------------------------------- /程序设计/8.3最上川-非递归类BFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/8.3最上川-非递归类BFS.c -------------------------------------------------------------------------------- /程序设计/9.1奇偶排序算法(指针实现).c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/9.1奇偶排序算法(指针实现).c -------------------------------------------------------------------------------- /程序设计/9.2分组.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/9.2分组.c -------------------------------------------------------------------------------- /程序设计/9.3计算组合个数2.0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/9.3计算组合个数2.0.c -------------------------------------------------------------------------------- /程序设计/作业2.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/作业2.1.c -------------------------------------------------------------------------------- /程序设计/作业2.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/作业2.2.c -------------------------------------------------------------------------------- /程序设计/作业2.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/作业2.3.c -------------------------------------------------------------------------------- /程序设计/作业3.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/作业3.1.c -------------------------------------------------------------------------------- /程序设计/作业3.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/作业3.2.c -------------------------------------------------------------------------------- /程序设计/作业3.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/作业3.3.c -------------------------------------------------------------------------------- /程序设计/作业4.1-直接递归.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/作业4.1-直接递归.c -------------------------------------------------------------------------------- /程序设计/作业4.1-边递归边存储.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/作业4.1-边递归边存储.c -------------------------------------------------------------------------------- /程序设计/作业4.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/作业4.2.c -------------------------------------------------------------------------------- /程序设计/作业5.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/作业5.1.c -------------------------------------------------------------------------------- /程序设计/作业5.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/作业5.2.c -------------------------------------------------------------------------------- /程序设计/作业5.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/作业5.3.c -------------------------------------------------------------------------------- /程序设计/其他1000以内素数.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/其他1000以内素数.c -------------------------------------------------------------------------------- /程序设计/小测1.1求相遇时间.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/小测1.1求相遇时间.c -------------------------------------------------------------------------------- /程序设计/小测1.2一个申必的位运算问题.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/小测1.2一个申必的位运算问题.c -------------------------------------------------------------------------------- /程序设计/小测1.3博弈游戏.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/小测1.3博弈游戏.c -------------------------------------------------------------------------------- /程序设计/小测2.1网络基站问题.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/小测2.1网络基站问题.c -------------------------------------------------------------------------------- /程序设计/小测2.2奇偶排序算法-快速排序-库函数.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/小测2.2奇偶排序算法-快速排序-库函数.c -------------------------------------------------------------------------------- /程序设计/小测2.2奇偶排序算法-快速排序.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/小测2.2奇偶排序算法-快速排序.c -------------------------------------------------------------------------------- /程序设计/小测2.2奇偶排序算法-选择排序.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/小测2.2奇偶排序算法-选择排序.c -------------------------------------------------------------------------------- /程序设计/小测2.3循环数组变换.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计/小测2.3循环数组变换.c -------------------------------------------------------------------------------- /程序设计二/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计二/README.md -------------------------------------------------------------------------------- /程序设计二/上机0-词典.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计二/上机0-词典.c -------------------------------------------------------------------------------- /程序设计二/上机1-高精度_快速幂_小数的幂.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计二/上机1-高精度_快速幂_小数的幂.c -------------------------------------------------------------------------------- /程序设计二/上机2-逆逆波兰数.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计二/上机2-逆逆波兰数.c -------------------------------------------------------------------------------- /程序设计二/上机3-一教的教室.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计二/上机3-一教的教室.c -------------------------------------------------------------------------------- /程序设计二/上机4-全排列计数.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计二/上机4-全排列计数.c -------------------------------------------------------------------------------- /程序设计二/上机4-全排列输出.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计二/上机4-全排列输出.c -------------------------------------------------------------------------------- /程序设计二/上机4-吃金币.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计二/上机4-吃金币.c -------------------------------------------------------------------------------- /程序设计二/上机4-通过oj题目的最大概率.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/程序设计二/上机4-通过oj题目的最大概率.c -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project1/ex1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project1/ex1/Makefile -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project1/ex1/build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project1/ex1/input/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project1/ex1/input/input.txt -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project1/ex1/output/counting_sort/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project1/ex1/output/heap_sort/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project1/ex1/output/merge_sort/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project1/ex1/output/quick_sort/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project1/ex1/src/heap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project1/ex1/src/heap.hpp -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project1/ex1/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project1/ex1/src/main.cpp -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project1/ex1/src/merge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project1/ex1/src/merge.hpp -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project1/ex1/src/quick.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project1/ex1/src/quick.hpp -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project1/算法基础-实验一-排序算法 .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project1/算法基础-实验一-排序算法 .pdf -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project2/ex1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project2/ex1/Makefile -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project2/ex1/output/time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project2/ex1/output/time.txt -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project2/ex1/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project2/ex1/src/main.cpp -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project2/ex2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project2/ex2/Makefile -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project2/ex2/output/result_10.txt: -------------------------------------------------------------------------------- 1 | 5 2 | CAABA 3 | -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project2/ex2/output/result_15.txt: -------------------------------------------------------------------------------- 1 | 8 2 | BADBCCCD 3 | -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project2/ex2/output/result_20.txt: -------------------------------------------------------------------------------- 1 | 12 2 | BACAAADCABAA 3 | -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project2/ex2/output/result_25.txt: -------------------------------------------------------------------------------- 1 | 14 2 | DCBABDDBDCCBDD 3 | -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project2/ex2/output/time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project2/ex2/output/time.txt -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project2/ex2/src/LCS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project2/ex2/src/LCS.hpp -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project2/ex2/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project2/ex2/src/main.cpp -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project2/实验报告.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project2/实验报告.pdf -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project3/ex1/input/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project3/ex1/input/input.txt -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project3/ex1/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project3/ex1/src/main.cpp -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project3/实验报告.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project3/实验报告.pdf -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project4/ex1/input/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project4/ex1/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project4/ex1/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project4/ex1/src/main.cpp -------------------------------------------------------------------------------- /算法实验/2-刘良宇-PB20000180-project4/实验报告.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/2-刘良宇-PB20000180-project4/实验报告.pdf -------------------------------------------------------------------------------- /算法实验/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/算法实验/README.md -------------------------------------------------------------------------------- /编译原理H/H10-1_多态重载.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H10-1_多态重载.md -------------------------------------------------------------------------------- /编译原理H/H10-2_多态重载和中间表示.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H10-2_多态重载和中间表示.md -------------------------------------------------------------------------------- /编译原理H/H12_中间表示与中间代码生成.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H12_中间表示与中间代码生成.md -------------------------------------------------------------------------------- /编译原理H/H13/stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H13/stack.png -------------------------------------------------------------------------------- /编译原理H/H13_运行时空间的组织与中间代码生成.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H13_运行时空间的组织与中间代码生成.md -------------------------------------------------------------------------------- /编译原理H/H14_循环与代码生成.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H14_循环与代码生成.md -------------------------------------------------------------------------------- /编译原理H/H15-2_代码优化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H15-2_代码优化.md -------------------------------------------------------------------------------- /编译原理H/H15_1/fig/image-20221212110448972.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H15_1/fig/image-20221212110448972.png -------------------------------------------------------------------------------- /编译原理H/H15_1/problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H15_1/problem.md -------------------------------------------------------------------------------- /编译原理H/H15_1/test/q3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H15_1/test/q3.c -------------------------------------------------------------------------------- /编译原理H/H15_1/test/q3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H15_1/test/q3.ll -------------------------------------------------------------------------------- /编译原理H/H15_1/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H15_1/test/test.c -------------------------------------------------------------------------------- /编译原理H/H15_1/test/xiaoyu.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H15_1/test/xiaoyu.ll -------------------------------------------------------------------------------- /编译原理H/H1_词法描述.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H1_词法描述.md -------------------------------------------------------------------------------- /编译原理H/H3-1_词法分析.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H3-1_词法分析.md -------------------------------------------------------------------------------- /编译原理H/H3-2_语法分析1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H3-2_语法分析1.md -------------------------------------------------------------------------------- /编译原理H/H4-1_语法分析2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H4-1_语法分析2.md -------------------------------------------------------------------------------- /编译原理H/H4-2_语法分析3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H4-2_语法分析3.md -------------------------------------------------------------------------------- /编译原理H/H6-1_语法分析4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H6-1_语法分析4.md -------------------------------------------------------------------------------- /编译原理H/H6-2_语法分析5&语法制导的翻译1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H6-2_语法分析5&语法制导的翻译1.md -------------------------------------------------------------------------------- /编译原理H/H8-1_语法制导的翻译2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H8-1_语法制导的翻译2.md -------------------------------------------------------------------------------- /编译原理H/H9_类型检查1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/H9_类型检查1.md -------------------------------------------------------------------------------- /编译原理H/h14/dfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理H/h14/dfs.png -------------------------------------------------------------------------------- /编译原理实验/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/README.md -------------------------------------------------------------------------------- /编译原理实验/pw2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/.gitignore -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-examples/CMakeLists.txt -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-examples/README.md -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-examples/grammar/labLexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-examples/grammar/labLexer.g4 -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-examples/grammar/testfile: -------------------------------------------------------------------------------- 1 | ( + ) + / * 2 | -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-examples/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-examples/src/main.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/ANTLRErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/ANTLRErrorListener.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/ANTLRErrorStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/ANTLRErrorStrategy.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/ANTLRFileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/ANTLRFileStream.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/ANTLRFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/ANTLRFileStream.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/ANTLRInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/ANTLRInputStream.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/ANTLRInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/ANTLRInputStream.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/BailErrorStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/BailErrorStrategy.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/BailErrorStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/BailErrorStrategy.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/BaseErrorListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/BaseErrorListener.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/BaseErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/BaseErrorListener.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/BufferedTokenStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/BufferedTokenStream.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/CharStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/CharStream.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/CharStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/CharStream.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/CommonToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/CommonToken.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/CommonToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/CommonToken.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/CommonTokenFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/CommonTokenFactory.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/CommonTokenStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/CommonTokenStream.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/CommonTokenStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/CommonTokenStream.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/Exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/Exceptions.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/Exceptions.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/IntStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/IntStream.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/IntStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/IntStream.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/Lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/Lexer.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/Lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/Lexer.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/LexerInterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/LexerInterpreter.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/LexerInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/LexerInterpreter.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/ListTokenSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/ListTokenSource.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/ListTokenSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/ListTokenSource.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/Parser.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/Parser.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/ParserInterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/ParserInterpreter.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/ParserInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/ParserInterpreter.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/ParserRuleContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/ParserRuleContext.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/ParserRuleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/ParserRuleContext.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/ProxyErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/ProxyErrorListener.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/Recognizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/Recognizer.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/Recognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/Recognizer.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/RuleContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/RuleContext.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/RuleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/RuleContext.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/RuntimeMetaData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/RuntimeMetaData.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/RuntimeMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/RuntimeMetaData.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/Token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/Token.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/Token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/Token.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/TokenFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/TokenFactory.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/TokenSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/TokenSource.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/TokenSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/TokenSource.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/TokenStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/TokenStream.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/TokenStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/TokenStream.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/TokenStreamRewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/TokenStreamRewriter.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/Vocabulary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/Vocabulary.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/Vocabulary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/Vocabulary.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/WritableToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/WritableToken.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/WritableToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/WritableToken.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/antlr4-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/antlr4-common.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/antlr4-runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/antlr4-runtime.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/ATN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/ATN.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/ATN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/ATN.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/ATNConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/ATNConfig.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/ATNConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/ATNConfig.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/ATNConfigSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/ATNConfigSet.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/ATNConfigSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/ATNConfigSet.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/ATNDeserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/ATNDeserializer.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/ATNSerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/ATNSerializer.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/ATNSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/ATNSerializer.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/ATNSimulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/ATNSimulator.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/ATNSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/ATNSimulator.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/ATNState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/ATNState.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/ATNState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/ATNState.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/ATNType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/ATNType.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/AmbiguityInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/AmbiguityInfo.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/AmbiguityInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/AmbiguityInfo.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/AtomTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/AtomTransition.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/BasicState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/BasicState.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/BasicState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/BasicState.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/BlockEndState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/BlockEndState.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/BlockEndState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/BlockEndState.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/BlockStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/BlockStartState.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/DecisionInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/DecisionInfo.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/DecisionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/DecisionInfo.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/DecisionState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/DecisionState.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/DecisionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/DecisionState.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/ErrorInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/ErrorInfo.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/ErrorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/ErrorInfo.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/LL1Analyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/LL1Analyzer.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/LL1Analyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/LL1Analyzer.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/LexerATNConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/LexerATNConfig.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/LexerAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/LexerAction.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/LexerAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/LexerAction.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/LexerActionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/LexerActionType.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/LexerModeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/LexerModeAction.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/LexerMoreAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/LexerMoreAction.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/LexerSkipAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/LexerSkipAction.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/LexerTypeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/LexerTypeAction.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/LoopEndState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/LoopEndState.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/LoopEndState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/LoopEndState.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/Makefile -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/ParseInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/ParseInfo.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/ParseInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/ParseInfo.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/PredictionMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/PredictionMode.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/RangeTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/RangeTransition.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/RuleStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/RuleStartState.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/RuleStopState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/RuleStopState.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/RuleStopState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/RuleStopState.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/RuleTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/RuleTransition.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/SemanticContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/SemanticContext.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/SetTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/SetTransition.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/SetTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/SetTransition.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/Transition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/Transition.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/atn/Transition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/atn/Transition.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/dfa/DFA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/dfa/DFA.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/dfa/DFA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/dfa/DFA.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/dfa/DFASerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/dfa/DFASerializer.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/dfa/DFASerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/dfa/DFASerializer.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/dfa/DFAState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/dfa/DFAState.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/dfa/DFAState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/dfa/DFAState.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/misc/Interval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/misc/Interval.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/misc/Interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/misc/Interval.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/misc/IntervalSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/misc/IntervalSet.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/misc/IntervalSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/misc/IntervalSet.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/misc/MurmurHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/misc/MurmurHash.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/misc/MurmurHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/misc/MurmurHash.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/misc/Predicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/misc/Predicate.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/misc/Predicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/misc/Predicate.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/support/Any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/support/Any.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/support/Any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/support/Any.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/support/Arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/support/Arrays.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/support/Arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/support/Arrays.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/support/BitSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/support/BitSet.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/support/CPPUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/support/CPPUtils.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/support/CPPUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/support/CPPUtils.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/support/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/support/StringUtils.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/support/guid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/support/guid.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/support/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/support/guid.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/tree/ErrorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/tree/ErrorNode.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/tree/ErrorNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/tree/ErrorNode.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/tree/ErrorNodeImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/tree/ErrorNodeImpl.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/tree/ParseTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/tree/ParseTree.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/tree/ParseTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/tree/ParseTree.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/tree/TerminalNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/tree/TerminalNode.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/tree/TerminalNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/tree/TerminalNode.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/tree/Trees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/tree/Trees.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/tree/Trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/tree/Trees.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/tree/pattern/Chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/tree/pattern/Chunk.h -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/tree/xpath/XPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/tree/xpath/XPath.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/antlr4-runtime/tree/xpath/XPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/antlr4-runtime/tree/xpath/XPath.h -------------------------------------------------------------------------------- /编译原理实验/pw2/flex-examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/flex-examples/Makefile -------------------------------------------------------------------------------- /编译原理实验/pw2/flex-examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/flex-examples/README -------------------------------------------------------------------------------- /编译原理实验/pw2/flex-examples/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/flex-examples/expr.c -------------------------------------------------------------------------------- /编译原理实验/pw2/flex-examples/expr.in: -------------------------------------------------------------------------------- 1 | 4+5 2 | 6+7 3 | 4 | -------------------------------------------------------------------------------- /编译原理实验/pw2/flex-examples/expr.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/flex-examples/expr.lex -------------------------------------------------------------------------------- /编译原理实验/pw2/flex-examples/lex.yy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/flex-examples/lex.yy.c -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | CMakeLists.txt 3 | resource 4 | .vscode -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/CMakeLists-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/labLexer/CMakeLists-1.txt -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/CMakeLists-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/labLexer/CMakeLists-3.txt -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/labLexer/Makefile -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/README.md: -------------------------------------------------------------------------------- 1 | # PW2 2 | 3 | See `doc` for help -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/cmake/FindANTLR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/labLexer/cmake/FindANTLR.cmake -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/doc/labLexer-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/labLexer/doc/labLexer-1.md -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/doc/labLexer-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/labLexer/doc/labLexer-2.md -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/doc/labLexer-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/labLexer/doc/labLexer-3.md -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/grammar/labLexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/labLexer/grammar/labLexer.g4 -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/grammar/relop.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/labLexer/grammar/relop.lex -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/src/labLexer-1-parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/labLexer/src/labLexer-1-parser.hpp -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/src/labLexer-1.c: -------------------------------------------------------------------------------- 1 | // nothing here -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/src/labLexer-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/labLexer/src/labLexer-1.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/src/labLexer-2.c: -------------------------------------------------------------------------------- 1 | #include "stdio.h" 2 | main() 3 | { 4 | printf("Enter labLexer 2...\n"); 5 | } 6 | -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/src/labLexer-2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/labLexer/src/labLexer-2.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/src/labLexer-3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/labLexer/src/labLexer-3.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/src/lex.yy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/labLexer/src/lex.yy.c -------------------------------------------------------------------------------- /编译原理实验/pw2/labLexer/test/labLexer-1-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/labLexer/test/labLexer-1-test.cpp -------------------------------------------------------------------------------- /编译原理实验/pw2/pl0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/pl0/Makefile -------------------------------------------------------------------------------- /编译原理实验/pw2/pl0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/pl0/README -------------------------------------------------------------------------------- /编译原理实验/pw2/pl0/doc/pl0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/pl0/doc/pl0.pdf -------------------------------------------------------------------------------- /编译原理实验/pw2/pl0/include/pl0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/pl0/include/pl0.h -------------------------------------------------------------------------------- /编译原理实验/pw2/pl0/make.simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/pl0/make.simple -------------------------------------------------------------------------------- /编译原理实验/pw2/pl0/sample/multiply.pl0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/pl0/sample/multiply.pl0 -------------------------------------------------------------------------------- /编译原理实验/pw2/pl0/sample/multiply.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/pl0/sample/multiply.res -------------------------------------------------------------------------------- /编译原理实验/pw2/pl0/sample/tests.pl0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/pl0/sample/tests.pl0 -------------------------------------------------------------------------------- /编译原理实验/pw2/pl0/sample/tests.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/pl0/sample/tests.res -------------------------------------------------------------------------------- /编译原理实验/pw2/pl0/src/pl0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw2/pl0/src/pl0.c -------------------------------------------------------------------------------- /编译原理实验/pw3/Examples/auto_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw3/Examples/auto_ptr.cpp -------------------------------------------------------------------------------- /编译原理实验/pw3/Examples/shared_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw3/Examples/shared_ptr.cpp -------------------------------------------------------------------------------- /编译原理实验/pw3/Examples/unique_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw3/Examples/unique_ptr.cpp -------------------------------------------------------------------------------- /编译原理实验/pw3/Examples/weak_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw3/Examples/weak_ptr.cpp -------------------------------------------------------------------------------- /编译原理实验/pw3/src/step1/answer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw3/src/step1/answer.md -------------------------------------------------------------------------------- /编译原理实验/pw3/src/step1/test1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw3/src/step1/test1.cpp -------------------------------------------------------------------------------- /编译原理实验/pw3/src/step1/test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw3/src/step1/test2.cpp -------------------------------------------------------------------------------- /编译原理实验/pw3/src/step2/answer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw3/src/step2/answer.md -------------------------------------------------------------------------------- /编译原理实验/pw3/src/step2/test1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw3/src/step2/test1.cpp -------------------------------------------------------------------------------- /编译原理实验/pw4/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .vscode 3 | .cache -------------------------------------------------------------------------------- /编译原理实验/pw4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw4/CMakeLists.txt -------------------------------------------------------------------------------- /编译原理实验/pw4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw4/README.md -------------------------------------------------------------------------------- /编译原理实验/pw4/SysYF语言定义.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw4/SysYF语言定义.pdf -------------------------------------------------------------------------------- /编译原理实验/pw4/doc/AST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw4/doc/AST.md -------------------------------------------------------------------------------- /编译原理实验/pw4/grammar/sysyfParser.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw4/grammar/sysyfParser.yy -------------------------------------------------------------------------------- /编译原理实验/pw4/grammar/sysyfScanner.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw4/grammar/sysyfScanner.ll -------------------------------------------------------------------------------- /编译原理实验/pw4/include/ErrorReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw4/include/ErrorReporter.h -------------------------------------------------------------------------------- /编译原理实验/pw4/include/SyntaxTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw4/include/SyntaxTree.h -------------------------------------------------------------------------------- /编译原理实验/pw4/include/SyntaxTreePrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw4/include/SyntaxTreePrinter.h -------------------------------------------------------------------------------- /编译原理实验/pw4/include/sysyfDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw4/include/sysyfDriver.h -------------------------------------------------------------------------------- /编译原理实验/pw4/include/sysyfFlexLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw4/include/sysyfFlexLexer.h -------------------------------------------------------------------------------- /编译原理实验/pw4/src/ErrorReporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw4/src/ErrorReporter.cpp -------------------------------------------------------------------------------- /编译原理实验/pw4/src/SyntaxTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw4/src/SyntaxTree.cpp -------------------------------------------------------------------------------- /编译原理实验/pw4/src/SyntaxTreePrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw4/src/SyntaxTreePrinter.cpp -------------------------------------------------------------------------------- /编译原理实验/pw4/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw4/src/main.cpp -------------------------------------------------------------------------------- /编译原理实验/pw4/src/sysyfDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw4/src/sysyfDriver.cpp -------------------------------------------------------------------------------- /编译原理实验/pw4/task1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw4/task1.md -------------------------------------------------------------------------------- /编译原理实验/pw4/task2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw4/task2.md -------------------------------------------------------------------------------- /编译原理实验/pw5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/.gitignore -------------------------------------------------------------------------------- /编译原理实验/pw5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/CMakeLists.txt -------------------------------------------------------------------------------- /编译原理实验/pw5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/README.md -------------------------------------------------------------------------------- /编译原理实验/pw5/SysYF语言定义.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/SysYF语言定义.pdf -------------------------------------------------------------------------------- /编译原理实验/pw5/doc/AST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/doc/AST.md -------------------------------------------------------------------------------- /编译原理实验/pw5/doc/answer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/doc/answer.md -------------------------------------------------------------------------------- /编译原理实验/pw5/figs/UML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/figs/UML.png -------------------------------------------------------------------------------- /编译原理实验/pw5/grammar/sysyfParser.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/grammar/sysyfParser.yy -------------------------------------------------------------------------------- /编译原理实验/pw5/grammar/sysyfScanner.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/grammar/sysyfScanner.ll -------------------------------------------------------------------------------- /编译原理实验/pw5/include/ErrorReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/include/ErrorReporter.h -------------------------------------------------------------------------------- /编译原理实验/pw5/include/SyntaxTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/include/SyntaxTree.h -------------------------------------------------------------------------------- /编译原理实验/pw5/include/SyntaxTreeChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/include/SyntaxTreeChecker.h -------------------------------------------------------------------------------- /编译原理实验/pw5/include/SyntaxTreePrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/include/SyntaxTreePrinter.h -------------------------------------------------------------------------------- /编译原理实验/pw5/include/sysyfDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/include/sysyfDriver.h -------------------------------------------------------------------------------- /编译原理实验/pw5/include/sysyfFlexLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/include/sysyfFlexLexer.h -------------------------------------------------------------------------------- /编译原理实验/pw5/src/ErrorReporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/src/ErrorReporter.cpp -------------------------------------------------------------------------------- /编译原理实验/pw5/src/SyntaxTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/src/SyntaxTree.cpp -------------------------------------------------------------------------------- /编译原理实验/pw5/src/SyntaxTreeChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/src/SyntaxTreeChecker.cpp -------------------------------------------------------------------------------- /编译原理实验/pw5/src/SyntaxTreePrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/src/SyntaxTreePrinter.cpp -------------------------------------------------------------------------------- /编译原理实验/pw5/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/src/main.cpp -------------------------------------------------------------------------------- /编译原理实验/pw5/src/sysyfDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/src/sysyfDriver.cpp -------------------------------------------------------------------------------- /编译原理实验/pw5/task1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/task1.md -------------------------------------------------------------------------------- /编译原理实验/pw5/task2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/task2.md -------------------------------------------------------------------------------- /编译原理实验/pw5/task3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/task3.md -------------------------------------------------------------------------------- /编译原理实验/pw5/test/subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/subprocess.h -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/01.out: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/01.sy: -------------------------------------------------------------------------------- 1 | // Global modulo 2 | int a = 1, b = 3 % (2.0 / 1); -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/02.out: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/02.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task2/02.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/03.out: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/03.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task2/03.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/04.out: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/04.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task2/04.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/05.out: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/05.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task2/05.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/06.out: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/06.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task2/06.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/07.out: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/07.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task2/07.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/11.out: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/11.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task2/11.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/12.out: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/12.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task2/12.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/13.out: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/13.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task2/13.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/14.out: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/14.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task2/14.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/15.out: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/15.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task2/15.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/16.out: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/16.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task2/16.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/17.out: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task2/17.sy: -------------------------------------------------------------------------------- 1 | // correct! 2 | int a = 1, b = a + 1; -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task3/01.out: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task3/01.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task3/01.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task3/02.out: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task3/02.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task3/02.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task3/03.out: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task3/03.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task3/03.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task3/04.out: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task3/04.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task3/04.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task3/05.out: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task3/05.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task3/05.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task3/06.out: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task3/06.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task3/06.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task3/07.out: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /编译原理实验/pw5/test/task3/07.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/task3/07.sy -------------------------------------------------------------------------------- /编译原理实验/pw5/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw5/test/test.cpp -------------------------------------------------------------------------------- /编译原理实验/pw5/testcase.sy: -------------------------------------------------------------------------------- 1 | int a = 2 % 3; -------------------------------------------------------------------------------- /编译原理实验/pw7/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | build 3 | .cache 4 | *.ll -------------------------------------------------------------------------------- /编译原理实验/pw7/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/CMakeLists.txt -------------------------------------------------------------------------------- /编译原理实验/pw7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/README.md -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task1/demo/go_upstairs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task1/demo/go_upstairs.c -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task1/sy/assign_test.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task1/sy/assign_test.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task1/sy/func_test.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task1/sy/func_test.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task1/sy/if_test.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task1/sy/if_test.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task1/sy/io.in: -------------------------------------------------------------------------------- 1 | 1 2 | 5 3 | 5 4 3 2 1 4 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task1/sy/io.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task1/sy/io.out -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task1/sy/io.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task1/sy/io.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task1/sy/while_test.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task1/sy/while_test.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task2/CMakeLists.txt -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task2/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/cpp/assign_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task2/cpp/assign_gen.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/cpp/func_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task2/cpp/func_gen.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/cpp/if_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task2/cpp/if_gen.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/cpp/io_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task2/cpp/io_gen.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/cpp/qsort_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task2/cpp/qsort_gen.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/cpp/while_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task2/cpp/while_gen.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task2/demo/CMakeLists.txt -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/demo/go_upstairs.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task2/demo/go_upstairs.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/sy/assign_test.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task2/sy/assign_test.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/sy/func_test.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task2/sy/func_test.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/sy/if_test.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task2/sy/if_test.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/sy/io.in: -------------------------------------------------------------------------------- 1 | ../../task1/sy/io.in -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/sy/io.out: -------------------------------------------------------------------------------- 1 | ../../task1/sy/io.out -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/sy/io.sy: -------------------------------------------------------------------------------- 1 | ../../task1/sy/io.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/sy/qsort.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task2/sy/qsort.in -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/sy/qsort.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task2/sy/qsort.out -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/sy/qsort.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task2/sy/qsort.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task2/sy/while_test.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task2/sy/while_test.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task3/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | _output/ 3 | .vscode/ 4 | *.ll 5 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task3/CMakeLists.txt -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task3/LICENSE -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task3/README.md -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task3/include/runtime/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task3/include/runtime/io.h -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task3/main.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task3/src/Driver/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task3/src/Driver/driver.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task3/src/runtime/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task3/src/runtime/io.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task3/tests/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task3/tests/helloworld.c -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task3/tests/quicksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task3/tests/quicksort.c -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task4/test.py -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/01_main.out: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/01_main.sy: -------------------------------------------------------------------------------- 1 | int main(){ 2 | return 0; 3 | } 4 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/02_var_defn.out: -------------------------------------------------------------------------------- 1 | 29 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/02_var_defn.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task4/test/02_var_defn.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/03_empty_stmt.out: -------------------------------------------------------------------------------- 1 | 21 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/03_empty_stmt.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task4/test/03_empty_stmt.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/04_arr_defn.out: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/04_arr_defn.sy: -------------------------------------------------------------------------------- 1 | int a[10]; 2 | int main(){ 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/05_arr_assign.out: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/05_arr_assign.sy: -------------------------------------------------------------------------------- 1 | int a[10]; 2 | int main(){ 3 | a[0]=1; 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/06_const_defn.out: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/06_const_defn.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task4/test/06_const_defn.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/07_const_array_defn.out: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/08_var_defn_func.out: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/09_void_func.out: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/09_void_func.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task4/test/09_void_func.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/10_if.out: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/10_if.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task4/test/10_if.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/11_if_else.out: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/11_if_else.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task4/test/11_if_else.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/12_while.out: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/12_while.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task4/test/12_while.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/13_break.out: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/13_break.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task4/test/13_break.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/14_continue.out: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/14_continue.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task4/test/14_continue.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/15_getint.in: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/15_getint.out: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/15_getint.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task4/test/15_getint.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/16_func_test.out: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/16_func_test.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task4/test/16_func_test.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/17_equal.in: -------------------------------------------------------------------------------- 1 | 3 2 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/17_equal.out: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/17_equal.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task4/test/17_equal.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/18_scope.out: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/18_scope.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task4/test/18_scope.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/19_gcd.in: -------------------------------------------------------------------------------- 1 | 4 2 | 20 -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/19_gcd.out: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/19_gcd.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task4/test/19_gcd.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/20_hanoi.in: -------------------------------------------------------------------------------- 1 | 4 2 | 4 3 | 7 4 | 3 5 | 9 6 | -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/20_hanoi.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task4/test/20_hanoi.out -------------------------------------------------------------------------------- /编译原理实验/pw7/Student/task4/test/20_hanoi.sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/Student/task4/test/20_hanoi.sy -------------------------------------------------------------------------------- /编译原理实验/pw7/doc/AST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/doc/AST.md -------------------------------------------------------------------------------- /编译原理实验/pw7/doc/SysYFIR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/doc/SysYFIR.md -------------------------------------------------------------------------------- /编译原理实验/pw7/doc/SysYF语言定义.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/doc/SysYF语言定义.pdf -------------------------------------------------------------------------------- /编译原理实验/pw7/doc/figs/DriverArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/doc/figs/DriverArchitecture.png -------------------------------------------------------------------------------- /编译原理实验/pw7/doc/figs/核心类概念图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/doc/figs/核心类概念图.png -------------------------------------------------------------------------------- /编译原理实验/pw7/doc/phase1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/doc/phase1.md -------------------------------------------------------------------------------- /编译原理实验/pw7/doc/phase2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/doc/phase2.md -------------------------------------------------------------------------------- /编译原理实验/pw7/doc/phase3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/doc/phase3.md -------------------------------------------------------------------------------- /编译原理实验/pw7/doc/phase4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/doc/phase4.md -------------------------------------------------------------------------------- /编译原理实验/pw7/doc/runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/doc/runtime.md -------------------------------------------------------------------------------- /编译原理实验/pw7/include/AST/SyntaxTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/AST/SyntaxTree.h -------------------------------------------------------------------------------- /编译原理实验/pw7/include/AST/SyntaxTreePrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/AST/SyntaxTreePrinter.h -------------------------------------------------------------------------------- /编译原理实验/pw7/include/Frontend/FlexLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/Frontend/FlexLexer.h -------------------------------------------------------------------------------- /编译原理实验/pw7/include/Frontend/SysYFDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/Frontend/SysYFDriver.h -------------------------------------------------------------------------------- /编译原理实验/pw7/include/Frontend/SysYFFlexLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/Frontend/SysYFFlexLexer.h -------------------------------------------------------------------------------- /编译原理实验/pw7/include/Frontend/SysYFParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/Frontend/SysYFParser.h -------------------------------------------------------------------------------- /编译原理实验/pw7/include/Frontend/location.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/Frontend/location.hh -------------------------------------------------------------------------------- /编译原理实验/pw7/include/Frontend/position.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/Frontend/position.hh -------------------------------------------------------------------------------- /编译原理实验/pw7/include/Frontend/stack.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/Frontend/stack.hh -------------------------------------------------------------------------------- /编译原理实验/pw7/include/SysYFIR/BasicBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/SysYFIR/BasicBlock.h -------------------------------------------------------------------------------- /编译原理实验/pw7/include/SysYFIR/Constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/SysYFIR/Constant.h -------------------------------------------------------------------------------- /编译原理实验/pw7/include/SysYFIR/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/SysYFIR/Function.h -------------------------------------------------------------------------------- /编译原理实验/pw7/include/SysYFIR/GlobalVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/SysYFIR/GlobalVariable.h -------------------------------------------------------------------------------- /编译原理实验/pw7/include/SysYFIR/IRPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/SysYFIR/IRPrinter.h -------------------------------------------------------------------------------- /编译原理实验/pw7/include/SysYFIR/IRStmtBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/SysYFIR/IRStmtBuilder.h -------------------------------------------------------------------------------- /编译原理实验/pw7/include/SysYFIR/Instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/SysYFIR/Instruction.h -------------------------------------------------------------------------------- /编译原理实验/pw7/include/SysYFIR/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/SysYFIR/Module.h -------------------------------------------------------------------------------- /编译原理实验/pw7/include/SysYFIR/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/SysYFIR/Type.h -------------------------------------------------------------------------------- /编译原理实验/pw7/include/SysYFIR/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/SysYFIR/User.h -------------------------------------------------------------------------------- /编译原理实验/pw7/include/SysYFIR/Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/SysYFIR/Value.h -------------------------------------------------------------------------------- /编译原理实验/pw7/include/SysYFIRBuilder/IRBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/include/SysYFIRBuilder/IRBuilder.h -------------------------------------------------------------------------------- /编译原理实验/pw7/lib/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/lib/lib.c -------------------------------------------------------------------------------- /编译原理实验/pw7/lib/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/lib/lib.h -------------------------------------------------------------------------------- /编译原理实验/pw7/report/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/report/report.md -------------------------------------------------------------------------------- /编译原理实验/pw7/src/AST/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/AST/CMakeLists.txt -------------------------------------------------------------------------------- /编译原理实验/pw7/src/AST/SyntaxTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/AST/SyntaxTree.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/src/AST/SyntaxTreePrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/AST/SyntaxTreePrinter.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/src/ErrorReporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/ErrorReporter/CMakeLists.txt -------------------------------------------------------------------------------- /编译原理实验/pw7/src/ErrorReporter/ErrorReporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/ErrorReporter/ErrorReporter.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/src/Frontend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/Frontend/CMakeLists.txt -------------------------------------------------------------------------------- /编译原理实验/pw7/src/Frontend/SysYFDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/Frontend/SysYFDriver.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/src/Frontend/SysYFParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/Frontend/SysYFParser.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/src/Frontend/SysYFScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/Frontend/SysYFScanner.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/src/SysYFIR/BasicBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/SysYFIR/BasicBlock.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/src/SysYFIR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/SysYFIR/CMakeLists.txt -------------------------------------------------------------------------------- /编译原理实验/pw7/src/SysYFIR/Constant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/SysYFIR/Constant.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/src/SysYFIR/Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/SysYFIR/Function.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/src/SysYFIR/GlobalVariable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/SysYFIR/GlobalVariable.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/src/SysYFIR/IRPrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/SysYFIR/IRPrinter.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/src/SysYFIR/Instruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/SysYFIR/Instruction.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/src/SysYFIR/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/SysYFIR/Module.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/src/SysYFIR/Type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/SysYFIR/Type.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/src/SysYFIR/User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/SysYFIR/User.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/src/SysYFIR/Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/SysYFIR/Value.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/src/SysYFIRBuilder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/SysYFIRBuilder/CMakeLists.txt -------------------------------------------------------------------------------- /编译原理实验/pw7/src/SysYFIRBuilder/IRBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/SysYFIRBuilder/IRBuilder.cpp -------------------------------------------------------------------------------- /编译原理实验/pw7/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/编译原理实验/pw7/src/main.cpp -------------------------------------------------------------------------------- /计算机组成原理实验/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/README.md -------------------------------------------------------------------------------- /计算机组成原理实验/lab1/Lab1_运算器及其应用.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab1/Lab1_运算器及其应用.pptx -------------------------------------------------------------------------------- /计算机组成原理实验/lab1/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab1/report.md -------------------------------------------------------------------------------- /计算机组成原理实验/lab1/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab1/report.pdf -------------------------------------------------------------------------------- /计算机组成原理实验/lab1/srcs/alu-harness.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab1/srcs/alu-harness.cpp -------------------------------------------------------------------------------- /计算机组成原理实验/lab1/srcs/alu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab1/srcs/alu.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab1/srcs/alu.vcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab1/srcs/alu.vcd -------------------------------------------------------------------------------- /计算机组成原理实验/lab1/srcs/alu_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab1/srcs/alu_32 -------------------------------------------------------------------------------- /计算机组成原理实验/lab1/srcs/btn_edge.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab1/srcs/btn_edge.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab1/srcs/fls-harness.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab1/srcs/fls-harness.cpp -------------------------------------------------------------------------------- /计算机组成原理实验/lab1/srcs/fls.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab1/srcs/fls.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab1/srcs/fls.vcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab1/srcs/fls.vcd -------------------------------------------------------------------------------- /计算机组成原理实验/lab1/srcs/fls_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab1/srcs/fls_top.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab1/srcs/top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab1/srcs/top.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/report.md -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/report.pdf -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/srcs/btn_edge.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/srcs/btn_edge.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/srcs/cons.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/srcs/cons.xdc -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/srcs/extra_block_sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/srcs/extra_block_sim.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/srcs/extra_dis_sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/srcs/extra_dis_sim.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/srcs/extra_sort_module.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/srcs/extra_sort_module.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/srcs/get_x.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/srcs/get_x.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/srcs/io.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/srcs/io.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/srcs/ram_ip.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/srcs/ram_ip.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/srcs/ram_ip_sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/srcs/ram_ip_sim.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/srcs/register_file.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/srcs/register_file.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/srcs/register_file.vcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/srcs/register_file.vcd -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/srcs/register_file_harness.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/srcs/register_file_harness.cpp -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/srcs/seg_decoder.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/srcs/seg_decoder.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/srcs/seg_display.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/srcs/seg_display.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/srcs/sort.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/srcs/sort.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/srcs/sort_module.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/srcs/sort_module.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/srcs/sort_sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/srcs/sort_sim.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab2/srcs/sort_sim_harness.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab2/srcs/sort_sim_harness.cpp -------------------------------------------------------------------------------- /计算机组成原理实验/lab3/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab3/report.md -------------------------------------------------------------------------------- /计算机组成原理实验/lab3/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab3/report.pdf -------------------------------------------------------------------------------- /计算机组成原理实验/lab3/src/sort.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab3/src/sort.asm -------------------------------------------------------------------------------- /计算机组成原理实验/lab3/src/test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab3/src/test.asm -------------------------------------------------------------------------------- /计算机组成原理实验/lab3/src/test.coe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab3/src/test.coe -------------------------------------------------------------------------------- /计算机组成原理实验/lab4/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab4/report.md -------------------------------------------------------------------------------- /计算机组成原理实验/lab4/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab4/report.pdf -------------------------------------------------------------------------------- /计算机组成原理实验/lab4/src/alu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab4/src/alu.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab4/src/control.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab4/src/control.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab4/src/cpu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab4/src/cpu.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab4/src/imm_extend.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab4/src/imm_extend.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab4/src/mem_wrapper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab4/src/mem_wrapper.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab4/src/pdu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab4/src/pdu.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab4/src/register_file.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab4/src/register_file.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab4/src/sort.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab4/src/sort.asm -------------------------------------------------------------------------------- /计算机组成原理实验/lab4/src/sort_data.coe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab4/src/sort_data.coe -------------------------------------------------------------------------------- /计算机组成原理实验/lab4/src/sort_text.coe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab4/src/sort_text.coe -------------------------------------------------------------------------------- /计算机组成原理实验/lab4/src/top_cpu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab4/src/top_cpu.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab5/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab5/report.md -------------------------------------------------------------------------------- /计算机组成原理实验/lab5/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab5/report.pdf -------------------------------------------------------------------------------- /计算机组成原理实验/lab5/src/EX.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab5/src/EX.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab5/src/ID.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab5/src/ID.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab5/src/IF.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab5/src/IF.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab5/src/MEM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab5/src/MEM.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab5/src/WB.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab5/src/WB.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab5/src/alu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab5/src/alu.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab5/src/control.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab5/src/control.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab5/src/cpu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab5/src/cpu.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab5/src/hazard.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab5/src/hazard.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab5/src/imm_extend.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab5/src/imm_extend.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab5/src/mem_wrapper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab5/src/mem_wrapper.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab5/src/pdu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab5/src/pdu.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab5/src/register_file.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab5/src/register_file.v -------------------------------------------------------------------------------- /计算机组成原理实验/lab5/src/top.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab5/src/top.xdc -------------------------------------------------------------------------------- /计算机组成原理实验/lab5/src/top_cpu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/lab5/src/top_cpu.v -------------------------------------------------------------------------------- /计算机组成原理实验/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/logo.png -------------------------------------------------------------------------------- /计算机组成原理实验/实验报告模板.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机组成原理实验/实验报告模板.md -------------------------------------------------------------------------------- /计算机网络/DNS实验.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机网络/DNS实验.pdf -------------------------------------------------------------------------------- /计算机网络/IP实验.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机网络/IP实验.pdf -------------------------------------------------------------------------------- /计算机网络/http实验.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机网络/http实验.pdf -------------------------------------------------------------------------------- /计算机网络/tcp实验.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机网络/tcp实验.pdf -------------------------------------------------------------------------------- /计算机网络/入门实验.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuly0322/USTC-CS-COURSE-HW/HEAD/计算机网络/入门实验.pdf --------------------------------------------------------------------------------