nznd
nznd
全部文章
分类
未归档(2)
归档
标签
去牛客网
登录
/
注册
nznd的博客
全部文章
(共2篇)
第六次寒假训练赛题解
第六次寒假训练赛题解 A CodeForces - 21A 简单模拟,模就完事了 #include<bits/stdc++.h> using namespace std; bool judge(int c) { return (c>=97&&c<=12...
2020-02-18
0
1000
第三次训练赛题解
第三次训练赛题解 A.POJ-2255 理解二叉树就自然知道了 typedef struct tree { char data; struct tree *l,*r; } Tree; Tree *creat(char a[],char b[],int n) { if(n==...
2020-01-31
0
776