├── .gitignore ├── Advanced_Compiler_Techniques ├── README.md ├── Translator.cpp └── Translator2.cpp ├── Computer_Architectures ├── README.md └── 体系大作业.cpp ├── Distributed_systems_concepts_and_design ├── PageRankMaster │ └── src │ │ └── server │ │ └── Server.java ├── PageRankWorker │ └── src │ │ └── client │ │ ├── Client.java │ │ └── Util.java └── README.md ├── Introduction_to_Computation ├── README.md └── 神奇翻转.cpp ├── Introduction_to_Computer_Systems ├── Makefile ├── README.md ├── csapp.c ├── csapp.h └── proxy.c ├── Java_Programming ├── README.md └── src │ └── crawler │ ├── Crawler.java │ ├── DownloadPage.java │ ├── Parser.java │ ├── SameFileName.java │ ├── TxtFileFilter.java │ └── Work.java ├── Microcomputer_Experiments ├── README.md └── Snake.asm ├── Practice_of_Data_Structure_and_Algorithm ├── Lianliankan.cpp ├── README.md ├── lift_simulator.cpp └── miniSQL.cpp ├── Practice_of_Programming ├── README.md ├── pku-fourcoloursv6.cpp ├── 百练魔兽世界.py └── 魔兽世界终极版.cpp └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/.gitignore -------------------------------------------------------------------------------- /Advanced_Compiler_Techniques/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Advanced_Compiler_Techniques/README.md -------------------------------------------------------------------------------- /Advanced_Compiler_Techniques/Translator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Advanced_Compiler_Techniques/Translator.cpp -------------------------------------------------------------------------------- /Advanced_Compiler_Techniques/Translator2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Advanced_Compiler_Techniques/Translator2.cpp -------------------------------------------------------------------------------- /Computer_Architectures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Computer_Architectures/README.md -------------------------------------------------------------------------------- /Computer_Architectures/体系大作业.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Computer_Architectures/体系大作业.cpp -------------------------------------------------------------------------------- /Distributed_systems_concepts_and_design/PageRankMaster/src/server/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Distributed_systems_concepts_and_design/PageRankMaster/src/server/Server.java -------------------------------------------------------------------------------- /Distributed_systems_concepts_and_design/PageRankWorker/src/client/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Distributed_systems_concepts_and_design/PageRankWorker/src/client/Client.java -------------------------------------------------------------------------------- /Distributed_systems_concepts_and_design/PageRankWorker/src/client/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Distributed_systems_concepts_and_design/PageRankWorker/src/client/Util.java -------------------------------------------------------------------------------- /Distributed_systems_concepts_and_design/README.md: -------------------------------------------------------------------------------- 1 | 分布式系统概念与设计(研一下)大作业: 2 | 3 | 简易的分布式Pagerank(两人合作完成) 4 | -------------------------------------------------------------------------------- /Introduction_to_Computation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Introduction_to_Computation/README.md -------------------------------------------------------------------------------- /Introduction_to_Computation/神奇翻转.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Introduction_to_Computation/神奇翻转.cpp -------------------------------------------------------------------------------- /Introduction_to_Computer_Systems/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Introduction_to_Computer_Systems/Makefile -------------------------------------------------------------------------------- /Introduction_to_Computer_Systems/README.md: -------------------------------------------------------------------------------- 1 | 计算机系统导论(大二上)的Proxy Lab 2 | 3 | 两人写的tiny proxy 4 | 5 | 运行环境:Linux 6 | -------------------------------------------------------------------------------- /Introduction_to_Computer_Systems/csapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Introduction_to_Computer_Systems/csapp.c -------------------------------------------------------------------------------- /Introduction_to_Computer_Systems/csapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Introduction_to_Computer_Systems/csapp.h -------------------------------------------------------------------------------- /Introduction_to_Computer_Systems/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Introduction_to_Computer_Systems/proxy.c -------------------------------------------------------------------------------- /Java_Programming/README.md: -------------------------------------------------------------------------------- 1 | JAVA程序设计(大二下)大作业: 2 | 3 | 网络爬虫 4 | -------------------------------------------------------------------------------- /Java_Programming/src/crawler/Crawler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Java_Programming/src/crawler/Crawler.java -------------------------------------------------------------------------------- /Java_Programming/src/crawler/DownloadPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Java_Programming/src/crawler/DownloadPage.java -------------------------------------------------------------------------------- /Java_Programming/src/crawler/Parser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Java_Programming/src/crawler/Parser.java -------------------------------------------------------------------------------- /Java_Programming/src/crawler/SameFileName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Java_Programming/src/crawler/SameFileName.java -------------------------------------------------------------------------------- /Java_Programming/src/crawler/TxtFileFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Java_Programming/src/crawler/TxtFileFilter.java -------------------------------------------------------------------------------- /Java_Programming/src/crawler/Work.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Java_Programming/src/crawler/Work.java -------------------------------------------------------------------------------- /Microcomputer_Experiments/README.md: -------------------------------------------------------------------------------- 1 | 微机实验(大二下)大作业: 2 | 3 | 贪吃蛇(用MASM汇编) 4 | 5 | 必须接机房的机箱 6 | 7 | 在MS-DOS下运行 8 | -------------------------------------------------------------------------------- /Microcomputer_Experiments/Snake.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Microcomputer_Experiments/Snake.asm -------------------------------------------------------------------------------- /Practice_of_Data_Structure_and_Algorithm/Lianliankan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Practice_of_Data_Structure_and_Algorithm/Lianliankan.cpp -------------------------------------------------------------------------------- /Practice_of_Data_Structure_and_Algorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Practice_of_Data_Structure_and_Algorithm/README.md -------------------------------------------------------------------------------- /Practice_of_Data_Structure_and_Algorithm/lift_simulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Practice_of_Data_Structure_and_Algorithm/lift_simulator.cpp -------------------------------------------------------------------------------- /Practice_of_Data_Structure_and_Algorithm/miniSQL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Practice_of_Data_Structure_and_Algorithm/miniSQL.cpp -------------------------------------------------------------------------------- /Practice_of_Programming/README.md: -------------------------------------------------------------------------------- 1 | 程序设计实习(大一下)大作业: 2 | 3 | 百练魔兽世界(C++面向对象) 4 | 5 | Botzone四色地图(游戏AI对抗) 6 | -------------------------------------------------------------------------------- /Practice_of_Programming/pku-fourcoloursv6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Practice_of_Programming/pku-fourcoloursv6.cpp -------------------------------------------------------------------------------- /Practice_of_Programming/百练魔兽世界.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Practice_of_Programming/百练魔兽世界.py -------------------------------------------------------------------------------- /Practice_of_Programming/魔兽世界终极版.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/Practice_of_Programming/魔兽世界终极版.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongtzeho/PKUCourse/HEAD/README.md --------------------------------------------------------------------------------