07 2023 档案

摘要:# 链表 ## 1、 ```cpp #include using namespace std; #define ll long long #define N 100010 struct node{ int val; struct node *next; } ; struct node *head = 阅读全文
posted @ 2023-07-06 14:47 雪之下,树之旁 阅读(144) 评论(0) 推荐(0)
摘要:校外实训 $1$ 全部更新到 $4.x$ 题目。 # 第一部分 ## A+B ```py a, b = map(int, input().strip().split()) print(a + b) ``` ## 熄灯问题 ```cpp #include using namespace std; in 阅读全文
posted @ 2023-07-03 15:56 雪之下,树之旁 阅读(216) 评论(0) 推荐(0)