├── .gitignore ├── 01-Data-Lab ├── README.assets │ └── IEEE-754.png ├── README.md ├── bits.c ├── datalab-handout.tar ├── datalab-writeup.pdf └── ecosystem.config.js ├── 02-Bomb-Lab ├── .gdbinit ├── README.assets │ ├── ascii.png │ ├── phase1-finish.png │ ├── phase1.png │ ├── phase2-finish.png │ ├── phase2-notes.png │ ├── phase2-sscanf.png │ ├── phase3-finish.png │ ├── phase3-switch.png │ ├── phase4-finish.png │ ├── phase5-array.png │ ├── phase5-devils.png │ ├── phase5-finish.png │ ├── phase6-finish.png │ ├── phase6-notes.jpeg │ ├── process-stack.png │ └── safety-bomb.png ├── README.md ├── bomb ├── bomb.asm ├── bomb.c ├── bomb438.tar ├── bomblab.pdf └── psol.txt ├── 03-Attack-Lab ├── README.assets │ ├── Cleanshot-2023-10-17-at-16.24.35.png │ ├── Cleanshot-2023-10-18-at-08.25.14@2x.png │ ├── Cleanshot-2023-10-18-at-11.09.35@2x.png │ ├── Cleanshot-2023-10-18-at-11.09.45@2x.png │ ├── Cleanshot-2023-10-18-at-11.29.12@2x.png │ ├── Cleanshot-2023-10-18-at-11.29.56@2x.png │ ├── Cleanshot-2023-10-18-at-11.48.53@2x.png │ ├── Cleanshot-2023-10-18-at-12.00.02@2x.png │ └── phase2.png ├── README.md ├── attacklab.pdf ├── phase1 │ ├── p1.txt │ └── p1a.txt ├── phase2 │ ├── p2.byte │ ├── p2.o │ ├── p2.s │ ├── p2.txt │ └── p2a.txt ├── phase3 │ ├── p3.txt │ └── p3a.txt ├── phase4 │ ├── p4.txt │ ├── p4a.txt │ ├── rtarget.s │ └── rtarget.s2 ├── phase5 │ ├── p5.byte │ ├── p5.o │ ├── p5.s │ ├── p5.txt │ ├── p5_draft.txt │ └── p5a.txt ├── phase6 │ ├── p6.txt │ └── p6a.txt ├── target72.tar └── target72 │ ├── README.txt │ ├── cookie.txt │ ├── ctarget │ ├── ctarget.s │ ├── farm.c │ ├── hex2raw │ ├── rtarget │ ├── rtarget.s │ ├── rtarget.s2 │ ├── starget │ └── starget.s ├── 04-Arch-Lab ├── README.assets │ └── Cleanshot-2023-10-25-at-12.30.25@2x.png ├── README.md ├── archlab-handout.tar ├── archlab.pdf ├── partA │ ├── bubble.ys │ ├── rsum.ys │ └── sum.ys ├── partB │ └── seq-full.hcl └── partC │ ├── ncopy-9way.ys │ ├── ncopy.ys │ └── pipe-full.hcl ├── 05-Cache-Lab ├── PartA │ └── csim.c ├── PartB │ └── trans.c ├── README.assets │ ├── Cleanshot-2023-11-04-at-11.36.40@2x.png │ ├── cache32x32.jpg │ ├── cache64x64.jpg │ └── diag.jpg ├── README.md ├── cachelab-handout.tar ├── cachelab.pdf └── test-length.py ├── 06-Tsh-Lab ├── README.md ├── tsh.c ├── tshlab-handout.tar └── tshlab.pdf ├── 07-Malloc-Lab ├── README.assets │ ├── binary2-bal.png │ ├── bp指针.svg │ ├── 元数据格式.svg │ ├── 分离空闲链表整体结构.svg │ ├── 分离空闲链表的堆存储.svg │ ├── 块结构.svg │ └── 堆结构.svg ├── README.md ├── malloclab-handout.tar ├── malloclab.pdf ├── mm.c ├── trace-analysis.py └── trace-freq.py ├── 08-Proxy-Lab ├── Makefile ├── README.assets │ └── socketio.png ├── README.md ├── cache.c ├── cache.h ├── proxy.c ├── proxylab-handout.tar └── proxylab.pdf ├── LICENSE ├── README.assets └── signature.svg ├── README.md ├── 复习资料 ├── ICS刷题指南与复习指导.pdf ├── ICS期末复习.pdf ├── ICS期末错题梳理.pdf ├── 期中考试复习细节.md └── 期末考试复习细节.md ├── 往年题 ├── 期中 │ ├── 2012期中-带答案.pdf │ ├── 2013期中-带答案.pdf │ ├── 2014期中-带答案.pdf │ ├── 2015期中-带答案.pdf │ ├── 2016期中-带答案.pdf │ ├── 2017期中-带答案.pdf │ ├── 2018期中-带答案.pdf │ ├── 2019期中-带答案.pdf │ ├── 2020期中-带答案.pdf │ ├── 2020期中-无答案.pdf │ ├── 2021期中-带答案.pdf │ ├── 2021期中-无答案.pdf │ ├── 2022期中-带答案.pdf │ ├── 2022期中-无答案.pdf │ ├── 2023期中-带答案.pdf │ ├── 2023期中-无答案.pdf │ ├── 2024期中-带答案.pdf │ ├── 2024期中-无答案.pdf │ └── 2024期中-试题及答案勘误.pdf ├── 期末 │ ├── 2013期末-带答案.pdf │ ├── 2014期末-带答案.pdf │ ├── 2015期末-20151109-带答案.pdf │ ├── 2015期末-20160104-带答案.pdf │ ├── 2015期末-20160104-无答案.pdf │ ├── 2016期末-带答案.pdf │ ├── 2016期末-无答案.pdf │ ├── 2017期末-无答案.pdf │ ├── 2018期末-带答案.pdf │ ├── 2019、2020期末-答案解析.pdf │ ├── 2019期末-无答案.pdf │ ├── 2020期末-无答案.pdf │ ├── 2021期末-带答案 │ │ ├── chap 10 解析.docx │ │ ├── chap 11-12 解析.docx │ │ ├── chap 11-12 题目.docx │ │ ├── chap 12 大题 code │ │ │ ├── csapp.c │ │ │ ├── csapp.h │ │ │ ├── producer-consumer-solution-1.c │ │ │ ├── producer-consumer-solution-2.c │ │ │ ├── producer-consumer-solution-3.c │ │ │ ├── run1.sh │ │ │ ├── run2.sh │ │ │ └── run3.sh │ │ ├── chap 2-6 解析.docx │ │ ├── chap 7 解析.docx │ │ ├── chap 8 解析.docx │ │ ├── chap 9 解析.docx │ │ └── chap 9 题目.docx │ ├── 2021期末-无答案.pdf │ ├── 2022期末-无答案.pdf │ ├── 2022期末-答案.pdf │ ├── 2024期末-带答案.pdf │ ├── 2024期末-无答案.pdf │ ├── 期末往年题勘误、详解 by Arthals.md │ └── 期末往年题勘误、详解 by Arthals.pdf └── 阶段测验 │ ├── 2025第1次阶段测验-带答案.pdf │ ├── 2025第1次阶段测验-无答案.pdf │ ├── 2025第2次阶段测验-带答案.pdf │ └── 2025第2次阶段测验-无答案.pdf └── 树洞 ├── #3073336-lab测评.md ├── #4556277-proxylab的HTTPS实现.md └── #4698353-lab测评.md /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | *copy.md -------------------------------------------------------------------------------- /01-Data-Lab/README.assets/IEEE-754.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/01-Data-Lab/README.assets/IEEE-754.png -------------------------------------------------------------------------------- /01-Data-Lab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/01-Data-Lab/README.md -------------------------------------------------------------------------------- /01-Data-Lab/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/01-Data-Lab/bits.c -------------------------------------------------------------------------------- /01-Data-Lab/datalab-handout.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/01-Data-Lab/datalab-handout.tar -------------------------------------------------------------------------------- /01-Data-Lab/datalab-writeup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/01-Data-Lab/datalab-writeup.pdf -------------------------------------------------------------------------------- /01-Data-Lab/ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/01-Data-Lab/ecosystem.config.js -------------------------------------------------------------------------------- /02-Bomb-Lab/.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/.gdbinit -------------------------------------------------------------------------------- /02-Bomb-Lab/README.assets/ascii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/README.assets/ascii.png -------------------------------------------------------------------------------- /02-Bomb-Lab/README.assets/phase1-finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/README.assets/phase1-finish.png -------------------------------------------------------------------------------- /02-Bomb-Lab/README.assets/phase1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/README.assets/phase1.png -------------------------------------------------------------------------------- /02-Bomb-Lab/README.assets/phase2-finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/README.assets/phase2-finish.png -------------------------------------------------------------------------------- /02-Bomb-Lab/README.assets/phase2-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/README.assets/phase2-notes.png -------------------------------------------------------------------------------- /02-Bomb-Lab/README.assets/phase2-sscanf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/README.assets/phase2-sscanf.png -------------------------------------------------------------------------------- /02-Bomb-Lab/README.assets/phase3-finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/README.assets/phase3-finish.png -------------------------------------------------------------------------------- /02-Bomb-Lab/README.assets/phase3-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/README.assets/phase3-switch.png -------------------------------------------------------------------------------- /02-Bomb-Lab/README.assets/phase4-finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/README.assets/phase4-finish.png -------------------------------------------------------------------------------- /02-Bomb-Lab/README.assets/phase5-array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/README.assets/phase5-array.png -------------------------------------------------------------------------------- /02-Bomb-Lab/README.assets/phase5-devils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/README.assets/phase5-devils.png -------------------------------------------------------------------------------- /02-Bomb-Lab/README.assets/phase5-finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/README.assets/phase5-finish.png -------------------------------------------------------------------------------- /02-Bomb-Lab/README.assets/phase6-finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/README.assets/phase6-finish.png -------------------------------------------------------------------------------- /02-Bomb-Lab/README.assets/phase6-notes.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/README.assets/phase6-notes.jpeg -------------------------------------------------------------------------------- /02-Bomb-Lab/README.assets/process-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/README.assets/process-stack.png -------------------------------------------------------------------------------- /02-Bomb-Lab/README.assets/safety-bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/README.assets/safety-bomb.png -------------------------------------------------------------------------------- /02-Bomb-Lab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/README.md -------------------------------------------------------------------------------- /02-Bomb-Lab/bomb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/bomb -------------------------------------------------------------------------------- /02-Bomb-Lab/bomb.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/bomb.asm -------------------------------------------------------------------------------- /02-Bomb-Lab/bomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/bomb.c -------------------------------------------------------------------------------- /02-Bomb-Lab/bomb438.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/bomb438.tar -------------------------------------------------------------------------------- /02-Bomb-Lab/bomblab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/bomblab.pdf -------------------------------------------------------------------------------- /02-Bomb-Lab/psol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/02-Bomb-Lab/psol.txt -------------------------------------------------------------------------------- /03-Attack-Lab/README.assets/Cleanshot-2023-10-17-at-16.24.35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/README.assets/Cleanshot-2023-10-17-at-16.24.35.png -------------------------------------------------------------------------------- /03-Attack-Lab/README.assets/Cleanshot-2023-10-18-at-08.25.14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/README.assets/Cleanshot-2023-10-18-at-08.25.14@2x.png -------------------------------------------------------------------------------- /03-Attack-Lab/README.assets/Cleanshot-2023-10-18-at-11.09.35@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/README.assets/Cleanshot-2023-10-18-at-11.09.35@2x.png -------------------------------------------------------------------------------- /03-Attack-Lab/README.assets/Cleanshot-2023-10-18-at-11.09.45@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/README.assets/Cleanshot-2023-10-18-at-11.09.45@2x.png -------------------------------------------------------------------------------- /03-Attack-Lab/README.assets/Cleanshot-2023-10-18-at-11.29.12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/README.assets/Cleanshot-2023-10-18-at-11.29.12@2x.png -------------------------------------------------------------------------------- /03-Attack-Lab/README.assets/Cleanshot-2023-10-18-at-11.29.56@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/README.assets/Cleanshot-2023-10-18-at-11.29.56@2x.png -------------------------------------------------------------------------------- /03-Attack-Lab/README.assets/Cleanshot-2023-10-18-at-11.48.53@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/README.assets/Cleanshot-2023-10-18-at-11.48.53@2x.png -------------------------------------------------------------------------------- /03-Attack-Lab/README.assets/Cleanshot-2023-10-18-at-12.00.02@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/README.assets/Cleanshot-2023-10-18-at-12.00.02@2x.png -------------------------------------------------------------------------------- /03-Attack-Lab/README.assets/phase2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/README.assets/phase2.png -------------------------------------------------------------------------------- /03-Attack-Lab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/README.md -------------------------------------------------------------------------------- /03-Attack-Lab/attacklab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/attacklab.pdf -------------------------------------------------------------------------------- /03-Attack-Lab/phase1/p1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase1/p1.txt -------------------------------------------------------------------------------- /03-Attack-Lab/phase1/p1a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase1/p1a.txt -------------------------------------------------------------------------------- /03-Attack-Lab/phase2/p2.byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase2/p2.byte -------------------------------------------------------------------------------- /03-Attack-Lab/phase2/p2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase2/p2.o -------------------------------------------------------------------------------- /03-Attack-Lab/phase2/p2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase2/p2.s -------------------------------------------------------------------------------- /03-Attack-Lab/phase2/p2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase2/p2.txt -------------------------------------------------------------------------------- /03-Attack-Lab/phase2/p2a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase2/p2a.txt -------------------------------------------------------------------------------- /03-Attack-Lab/phase3/p3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase3/p3.txt -------------------------------------------------------------------------------- /03-Attack-Lab/phase3/p3a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase3/p3a.txt -------------------------------------------------------------------------------- /03-Attack-Lab/phase4/p4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase4/p4.txt -------------------------------------------------------------------------------- /03-Attack-Lab/phase4/p4a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase4/p4a.txt -------------------------------------------------------------------------------- /03-Attack-Lab/phase4/rtarget.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase4/rtarget.s -------------------------------------------------------------------------------- /03-Attack-Lab/phase4/rtarget.s2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase4/rtarget.s2 -------------------------------------------------------------------------------- /03-Attack-Lab/phase5/p5.byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase5/p5.byte -------------------------------------------------------------------------------- /03-Attack-Lab/phase5/p5.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase5/p5.o -------------------------------------------------------------------------------- /03-Attack-Lab/phase5/p5.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase5/p5.s -------------------------------------------------------------------------------- /03-Attack-Lab/phase5/p5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase5/p5.txt -------------------------------------------------------------------------------- /03-Attack-Lab/phase5/p5_draft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase5/p5_draft.txt -------------------------------------------------------------------------------- /03-Attack-Lab/phase5/p5a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase5/p5a.txt -------------------------------------------------------------------------------- /03-Attack-Lab/phase6/p6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase6/p6.txt -------------------------------------------------------------------------------- /03-Attack-Lab/phase6/p6a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/phase6/p6a.txt -------------------------------------------------------------------------------- /03-Attack-Lab/target72.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/target72.tar -------------------------------------------------------------------------------- /03-Attack-Lab/target72/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/target72/README.txt -------------------------------------------------------------------------------- /03-Attack-Lab/target72/cookie.txt: -------------------------------------------------------------------------------- 1 | 0x11a67610 2 | -------------------------------------------------------------------------------- /03-Attack-Lab/target72/ctarget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/target72/ctarget -------------------------------------------------------------------------------- /03-Attack-Lab/target72/ctarget.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/target72/ctarget.s -------------------------------------------------------------------------------- /03-Attack-Lab/target72/farm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/target72/farm.c -------------------------------------------------------------------------------- /03-Attack-Lab/target72/hex2raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/target72/hex2raw -------------------------------------------------------------------------------- /03-Attack-Lab/target72/rtarget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/target72/rtarget -------------------------------------------------------------------------------- /03-Attack-Lab/target72/rtarget.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/target72/rtarget.s -------------------------------------------------------------------------------- /03-Attack-Lab/target72/rtarget.s2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/target72/rtarget.s2 -------------------------------------------------------------------------------- /03-Attack-Lab/target72/starget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/target72/starget -------------------------------------------------------------------------------- /03-Attack-Lab/target72/starget.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/03-Attack-Lab/target72/starget.s -------------------------------------------------------------------------------- /04-Arch-Lab/README.assets/Cleanshot-2023-10-25-at-12.30.25@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/04-Arch-Lab/README.assets/Cleanshot-2023-10-25-at-12.30.25@2x.png -------------------------------------------------------------------------------- /04-Arch-Lab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/04-Arch-Lab/README.md -------------------------------------------------------------------------------- /04-Arch-Lab/archlab-handout.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/04-Arch-Lab/archlab-handout.tar -------------------------------------------------------------------------------- /04-Arch-Lab/archlab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/04-Arch-Lab/archlab.pdf -------------------------------------------------------------------------------- /04-Arch-Lab/partA/bubble.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/04-Arch-Lab/partA/bubble.ys -------------------------------------------------------------------------------- /04-Arch-Lab/partA/rsum.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/04-Arch-Lab/partA/rsum.ys -------------------------------------------------------------------------------- /04-Arch-Lab/partA/sum.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/04-Arch-Lab/partA/sum.ys -------------------------------------------------------------------------------- /04-Arch-Lab/partB/seq-full.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/04-Arch-Lab/partB/seq-full.hcl -------------------------------------------------------------------------------- /04-Arch-Lab/partC/ncopy-9way.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/04-Arch-Lab/partC/ncopy-9way.ys -------------------------------------------------------------------------------- /04-Arch-Lab/partC/ncopy.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/04-Arch-Lab/partC/ncopy.ys -------------------------------------------------------------------------------- /04-Arch-Lab/partC/pipe-full.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/04-Arch-Lab/partC/pipe-full.hcl -------------------------------------------------------------------------------- /05-Cache-Lab/PartA/csim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/05-Cache-Lab/PartA/csim.c -------------------------------------------------------------------------------- /05-Cache-Lab/PartB/trans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/05-Cache-Lab/PartB/trans.c -------------------------------------------------------------------------------- /05-Cache-Lab/README.assets/Cleanshot-2023-11-04-at-11.36.40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/05-Cache-Lab/README.assets/Cleanshot-2023-11-04-at-11.36.40@2x.png -------------------------------------------------------------------------------- /05-Cache-Lab/README.assets/cache32x32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/05-Cache-Lab/README.assets/cache32x32.jpg -------------------------------------------------------------------------------- /05-Cache-Lab/README.assets/cache64x64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/05-Cache-Lab/README.assets/cache64x64.jpg -------------------------------------------------------------------------------- /05-Cache-Lab/README.assets/diag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/05-Cache-Lab/README.assets/diag.jpg -------------------------------------------------------------------------------- /05-Cache-Lab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/05-Cache-Lab/README.md -------------------------------------------------------------------------------- /05-Cache-Lab/cachelab-handout.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/05-Cache-Lab/cachelab-handout.tar -------------------------------------------------------------------------------- /05-Cache-Lab/cachelab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/05-Cache-Lab/cachelab.pdf -------------------------------------------------------------------------------- /05-Cache-Lab/test-length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/05-Cache-Lab/test-length.py -------------------------------------------------------------------------------- /06-Tsh-Lab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/06-Tsh-Lab/README.md -------------------------------------------------------------------------------- /06-Tsh-Lab/tsh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/06-Tsh-Lab/tsh.c -------------------------------------------------------------------------------- /06-Tsh-Lab/tshlab-handout.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/06-Tsh-Lab/tshlab-handout.tar -------------------------------------------------------------------------------- /06-Tsh-Lab/tshlab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/06-Tsh-Lab/tshlab.pdf -------------------------------------------------------------------------------- /07-Malloc-Lab/README.assets/binary2-bal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/07-Malloc-Lab/README.assets/binary2-bal.png -------------------------------------------------------------------------------- /07-Malloc-Lab/README.assets/bp指针.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/07-Malloc-Lab/README.assets/bp指针.svg -------------------------------------------------------------------------------- /07-Malloc-Lab/README.assets/元数据格式.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/07-Malloc-Lab/README.assets/元数据格式.svg -------------------------------------------------------------------------------- /07-Malloc-Lab/README.assets/分离空闲链表整体结构.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/07-Malloc-Lab/README.assets/分离空闲链表整体结构.svg -------------------------------------------------------------------------------- /07-Malloc-Lab/README.assets/分离空闲链表的堆存储.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/07-Malloc-Lab/README.assets/分离空闲链表的堆存储.svg -------------------------------------------------------------------------------- /07-Malloc-Lab/README.assets/块结构.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/07-Malloc-Lab/README.assets/块结构.svg -------------------------------------------------------------------------------- /07-Malloc-Lab/README.assets/堆结构.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/07-Malloc-Lab/README.assets/堆结构.svg -------------------------------------------------------------------------------- /07-Malloc-Lab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/07-Malloc-Lab/README.md -------------------------------------------------------------------------------- /07-Malloc-Lab/malloclab-handout.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/07-Malloc-Lab/malloclab-handout.tar -------------------------------------------------------------------------------- /07-Malloc-Lab/malloclab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/07-Malloc-Lab/malloclab.pdf -------------------------------------------------------------------------------- /07-Malloc-Lab/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/07-Malloc-Lab/mm.c -------------------------------------------------------------------------------- /07-Malloc-Lab/trace-analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/07-Malloc-Lab/trace-analysis.py -------------------------------------------------------------------------------- /07-Malloc-Lab/trace-freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/07-Malloc-Lab/trace-freq.py -------------------------------------------------------------------------------- /08-Proxy-Lab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/08-Proxy-Lab/Makefile -------------------------------------------------------------------------------- /08-Proxy-Lab/README.assets/socketio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/08-Proxy-Lab/README.assets/socketio.png -------------------------------------------------------------------------------- /08-Proxy-Lab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/08-Proxy-Lab/README.md -------------------------------------------------------------------------------- /08-Proxy-Lab/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/08-Proxy-Lab/cache.c -------------------------------------------------------------------------------- /08-Proxy-Lab/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/08-Proxy-Lab/cache.h -------------------------------------------------------------------------------- /08-Proxy-Lab/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/08-Proxy-Lab/proxy.c -------------------------------------------------------------------------------- /08-Proxy-Lab/proxylab-handout.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/08-Proxy-Lab/proxylab-handout.tar -------------------------------------------------------------------------------- /08-Proxy-Lab/proxylab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/08-Proxy-Lab/proxylab.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/LICENSE -------------------------------------------------------------------------------- /README.assets/signature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/README.assets/signature.svg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/README.md -------------------------------------------------------------------------------- /复习资料/ICS刷题指南与复习指导.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/复习资料/ICS刷题指南与复习指导.pdf -------------------------------------------------------------------------------- /复习资料/ICS期末复习.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/复习资料/ICS期末复习.pdf -------------------------------------------------------------------------------- /复习资料/ICS期末错题梳理.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/复习资料/ICS期末错题梳理.pdf -------------------------------------------------------------------------------- /复习资料/期中考试复习细节.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/复习资料/期中考试复习细节.md -------------------------------------------------------------------------------- /复习资料/期末考试复习细节.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/复习资料/期末考试复习细节.md -------------------------------------------------------------------------------- /往年题/期中/2012期中-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2012期中-带答案.pdf -------------------------------------------------------------------------------- /往年题/期中/2013期中-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2013期中-带答案.pdf -------------------------------------------------------------------------------- /往年题/期中/2014期中-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2014期中-带答案.pdf -------------------------------------------------------------------------------- /往年题/期中/2015期中-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2015期中-带答案.pdf -------------------------------------------------------------------------------- /往年题/期中/2016期中-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2016期中-带答案.pdf -------------------------------------------------------------------------------- /往年题/期中/2017期中-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2017期中-带答案.pdf -------------------------------------------------------------------------------- /往年题/期中/2018期中-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2018期中-带答案.pdf -------------------------------------------------------------------------------- /往年题/期中/2019期中-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2019期中-带答案.pdf -------------------------------------------------------------------------------- /往年题/期中/2020期中-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2020期中-带答案.pdf -------------------------------------------------------------------------------- /往年题/期中/2020期中-无答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2020期中-无答案.pdf -------------------------------------------------------------------------------- /往年题/期中/2021期中-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2021期中-带答案.pdf -------------------------------------------------------------------------------- /往年题/期中/2021期中-无答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2021期中-无答案.pdf -------------------------------------------------------------------------------- /往年题/期中/2022期中-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2022期中-带答案.pdf -------------------------------------------------------------------------------- /往年题/期中/2022期中-无答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2022期中-无答案.pdf -------------------------------------------------------------------------------- /往年题/期中/2023期中-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2023期中-带答案.pdf -------------------------------------------------------------------------------- /往年题/期中/2023期中-无答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2023期中-无答案.pdf -------------------------------------------------------------------------------- /往年题/期中/2024期中-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2024期中-带答案.pdf -------------------------------------------------------------------------------- /往年题/期中/2024期中-无答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2024期中-无答案.pdf -------------------------------------------------------------------------------- /往年题/期中/2024期中-试题及答案勘误.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期中/2024期中-试题及答案勘误.pdf -------------------------------------------------------------------------------- /往年题/期末/2013期末-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2013期末-带答案.pdf -------------------------------------------------------------------------------- /往年题/期末/2014期末-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2014期末-带答案.pdf -------------------------------------------------------------------------------- /往年题/期末/2015期末-20151109-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2015期末-20151109-带答案.pdf -------------------------------------------------------------------------------- /往年题/期末/2015期末-20160104-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2015期末-20160104-带答案.pdf -------------------------------------------------------------------------------- /往年题/期末/2015期末-20160104-无答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2015期末-20160104-无答案.pdf -------------------------------------------------------------------------------- /往年题/期末/2016期末-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2016期末-带答案.pdf -------------------------------------------------------------------------------- /往年题/期末/2016期末-无答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2016期末-无答案.pdf -------------------------------------------------------------------------------- /往年题/期末/2017期末-无答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2017期末-无答案.pdf -------------------------------------------------------------------------------- /往年题/期末/2018期末-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2018期末-带答案.pdf -------------------------------------------------------------------------------- /往年题/期末/2019、2020期末-答案解析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2019、2020期末-答案解析.pdf -------------------------------------------------------------------------------- /往年题/期末/2019期末-无答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2019期末-无答案.pdf -------------------------------------------------------------------------------- /往年题/期末/2020期末-无答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2020期末-无答案.pdf -------------------------------------------------------------------------------- /往年题/期末/2021期末-带答案/chap 10 解析.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2021期末-带答案/chap 10 解析.docx -------------------------------------------------------------------------------- /往年题/期末/2021期末-带答案/chap 11-12 解析.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2021期末-带答案/chap 11-12 解析.docx -------------------------------------------------------------------------------- /往年题/期末/2021期末-带答案/chap 11-12 题目.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2021期末-带答案/chap 11-12 题目.docx -------------------------------------------------------------------------------- /往年题/期末/2021期末-带答案/chap 12 大题 code/csapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2021期末-带答案/chap 12 大题 code/csapp.c -------------------------------------------------------------------------------- /往年题/期末/2021期末-带答案/chap 12 大题 code/csapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2021期末-带答案/chap 12 大题 code/csapp.h -------------------------------------------------------------------------------- /往年题/期末/2021期末-带答案/chap 12 大题 code/producer-consumer-solution-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2021期末-带答案/chap 12 大题 code/producer-consumer-solution-1.c -------------------------------------------------------------------------------- /往年题/期末/2021期末-带答案/chap 12 大题 code/producer-consumer-solution-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2021期末-带答案/chap 12 大题 code/producer-consumer-solution-2.c -------------------------------------------------------------------------------- /往年题/期末/2021期末-带答案/chap 12 大题 code/producer-consumer-solution-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2021期末-带答案/chap 12 大题 code/producer-consumer-solution-3.c -------------------------------------------------------------------------------- /往年题/期末/2021期末-带答案/chap 12 大题 code/run1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2021期末-带答案/chap 12 大题 code/run1.sh -------------------------------------------------------------------------------- /往年题/期末/2021期末-带答案/chap 12 大题 code/run2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2021期末-带答案/chap 12 大题 code/run2.sh -------------------------------------------------------------------------------- /往年题/期末/2021期末-带答案/chap 12 大题 code/run3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2021期末-带答案/chap 12 大题 code/run3.sh -------------------------------------------------------------------------------- /往年题/期末/2021期末-带答案/chap 2-6 解析.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2021期末-带答案/chap 2-6 解析.docx -------------------------------------------------------------------------------- /往年题/期末/2021期末-带答案/chap 7 解析.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2021期末-带答案/chap 7 解析.docx -------------------------------------------------------------------------------- /往年题/期末/2021期末-带答案/chap 8 解析.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2021期末-带答案/chap 8 解析.docx -------------------------------------------------------------------------------- /往年题/期末/2021期末-带答案/chap 9 解析.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2021期末-带答案/chap 9 解析.docx -------------------------------------------------------------------------------- /往年题/期末/2021期末-带答案/chap 9 题目.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2021期末-带答案/chap 9 题目.docx -------------------------------------------------------------------------------- /往年题/期末/2021期末-无答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2021期末-无答案.pdf -------------------------------------------------------------------------------- /往年题/期末/2022期末-无答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2022期末-无答案.pdf -------------------------------------------------------------------------------- /往年题/期末/2022期末-答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2022期末-答案.pdf -------------------------------------------------------------------------------- /往年题/期末/2024期末-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2024期末-带答案.pdf -------------------------------------------------------------------------------- /往年题/期末/2024期末-无答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/2024期末-无答案.pdf -------------------------------------------------------------------------------- /往年题/期末/期末往年题勘误、详解 by Arthals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/期末往年题勘误、详解 by Arthals.md -------------------------------------------------------------------------------- /往年题/期末/期末往年题勘误、详解 by Arthals.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/期末/期末往年题勘误、详解 by Arthals.pdf -------------------------------------------------------------------------------- /往年题/阶段测验/2025第1次阶段测验-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/阶段测验/2025第1次阶段测验-带答案.pdf -------------------------------------------------------------------------------- /往年题/阶段测验/2025第1次阶段测验-无答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/阶段测验/2025第1次阶段测验-无答案.pdf -------------------------------------------------------------------------------- /往年题/阶段测验/2025第2次阶段测验-带答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/阶段测验/2025第2次阶段测验-带答案.pdf -------------------------------------------------------------------------------- /往年题/阶段测验/2025第2次阶段测验-无答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/往年题/阶段测验/2025第2次阶段测验-无答案.pdf -------------------------------------------------------------------------------- /树洞/#3073336-lab测评.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/树洞/#3073336-lab测评.md -------------------------------------------------------------------------------- /树洞/#4556277-proxylab的HTTPS实现.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/树洞/#4556277-proxylab的HTTPS实现.md -------------------------------------------------------------------------------- /树洞/#4698353-lab测评.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuozhiyongde/Introduction-to-Computer-System-2023Fall-PKU/HEAD/树洞/#4698353-lab测评.md --------------------------------------------------------------------------------