我爱打go
我爱打go
全部文章
分类
归档
标签
去牛客网
登录
/
注册
我爱打go的博客
全部文章
(共2篇)
题解 | 切题之路
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define Maxn 100020 char *p1,*p2,buf[100000]; #define nc() (p1==p2 &&...
2026-01-11
0
5
题解 | 先序遍历、中序遍历和后序遍历
#include<bits/stdc++.h> using namespace std; #define Maxn 100020 int fa[Maxn]={0}; int L[Maxn]={0},R[Maxn]={0}; bool vis[Maxn]={false}; void pr...
2026-01-01
0
18