主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
我才不怕编程
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
9
发帖
0
笔记
0
Ta的粉丝
126
关注数
0
粉丝数
126
获赞数
8
阅读数
24254
重点是建树方法
#include <bits/stdc++.h> using namespace std; typedef struct node{ char data; struct node *lchi...
P1561
2023年3月12日 23:18
回复 1
|
赞 2
|
浏览 3.7k
连通分量个数-->dfs
#include <bits/stdc++.h> using namespace std; vector<int> neibor[1000];//neibor[i]:结点i的邻居们 int visit[1000];//visit[i]:结点i是否被访问过 ...
P1319
2023年3月17日 15:28
回复 0
|
赞 1
|
浏览 2.1k
sos 为什么会超时
#include <bits/stdc++.h> using namespace std; int main(){ int n,f,x; while(1){ cin>>n; if(n==0) break; int num...
P1329
2023年3月15日 15:15
回复 2
|
赞 0
|
浏览 2.6k
BFS
#include <bits/stdc++.h> using namespace std; typedef struct node{ vector<int> edge; int deep; bool visit; node(){ ...
P1841
2023年3月14日 15:13
回复 0
|
赞 1
|
浏览 2.6k
最小公共双亲的变型题
#include <bits/stdc++.h> using namespace std; typedef struct node{ int parent; node(){ parent=-1; } }node; int main(){ i...
P1654
2023年3月14日 10:01
回复 0
|
赞 1
|
浏览 2.5k
模板题
#include <bits/stdc++.h> using namespace std; typedef struct node{ int data; struct node *lchild,*rchild; node(int n){ data=...
P1396
2023年3月13日 22:31
回复 0
|
赞 0
|
浏览 2.6k
利用 2*i 和 2*i+1 的极简代码
#include <bits/stdc++.h> using namespace std; int num; void count(int m,int n){ num+=1; if(2*m<=n) count(2*m,n); if(2*m+...
P1264
2023年3月13日 22:03
回复 0
|
赞 1
|
浏览 2.5k
肌肉习惯的 初始化
#include <bits/stdc++.h> using namespace std; typedef struct node { int data; struct node *lchild,*rchild; } node,*Tree; void...
P1411
2023年3月13日 17:34
回复 0
|
赞 1
|
浏览 2.8k
差别在建树方法
#include <bits/stdc++.h> using namespace std; typedef struct node { char data; struct node *lchild,*rchild; } node,*Tree; voi...
P1401
2023年3月13日 17:09
回复 0
|
赞 1
|
浏览 2.8k
本科学校:合肥工业大学
目标学校:无
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!