Recent Posts

Google Kick Start 2022 Round H Solution

3 minute read

Google Kick Start Round H 2022 Running in Circles 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 #include <bits/stdc++.h> using na...

Google Kick Start 2022 Round G Solution

5 minute read

Google Kick Start Round G 2022 Walktober 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 #include <bits/stdc++.h> using namespace std;...

Google Kick Start 2022 Round F Solution

4 minute read

Google Kick Start Round F 2022 Sort the Fabrics 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 #include...

从C语言到二进制程序[第五期一生一芯计划 - P4]

less than 1 minute read

Slides 笔记 预处理: 主要是文本替换, #include, #define等; 其他还有去除注释, 条件编译(#ifdef等), 字符串拼接等. 编译 词法分析: 识别token与位置, 本质文本匹配. 语法分析: 根据C语法把tok...