主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
yanmo
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
0
发帖
14
笔记
0
Ta的粉丝
80
关注数
0
粉丝数
80
获赞数
0
阅读数
11232
devc++可以自动在合适的地方加空格吗?
int j = 0; next[0] = 0; for(int i = 1; i < s.size(); i++) { while (j > 0 && s[i] != s[j]) { ...
我要提问
2024年3月21日 12:16
回复 1
|
赞 0
|
浏览 1.5k
二叉排序树中寻找p和q的最近公共祖先
TreeNode* search(TreeNode* root, TreeNode* p, TreeNode* q) { if(root->val>=min(p->val,q->val)&&root->val<=...
我要提问
2024年3月16日 21:07
回复 1
|
赞 0
|
浏览 1.3k
为什么没有输出啊?调试的时候报错program receive signal sigsegv,好像是backtracking里出了问题
#include<bits/stdc++.h> using namespace std; bool istrue(int a, int b, int c, int d){ int ans1=a*b*c*d; int ans2=a*b*c+d; int ans3=...
我要提问
2024年3月16日 19:42
回复 1
|
赞 0
|
浏览 1.2k
1565 最短路
struct Edge{ int u,v,w; Edge(int u, int v, int w):u(u),v(v),w(w){};//这一行是啥意思? };
我要提问
2024年3月15日 16:43
回复 1
|
赞 0
|
浏览 1.3k
1161 二叉树遍历
#include<bits/stdc++.h> using namespace std; typedef struct node{ int data; struct node* lchild; struct node* rchild; }*Bitree; ...
我要提问
2024年3月7日 15:05
回复 1
|
赞 0
|
浏览 540
1071 幂次方
#include<bits/stdc++.h> using namespace std; typedef long long ll; int main(){ ll x,n; cin>>x>>n; int mod=233333; ll...
我要提问
2024年3月6日 21:13
回复 1
|
赞 0
|
浏览 715
1102 素数判定
#include<bits/stdc++.h> using namespace std; //线性素数筛选,prime[0]存储素数个数 const int maxn=1000000+5; int prime[maxn]; void getprime(){ ...
我要提问
2024年3月6日 20:02
回复 2
|
赞 0
|
浏览 476
1312 畅通工程
//普里姆算法 #include<bits/stdc++.h> using namespace std; #define INF 0x3f3f3f3f //定义无穷大 const int maxn=100+5; int mpt[maxn][maxn];//邻接矩阵 ...
我要提问
2024年3月5日 21:00
回复 1
|
赞 0
|
浏览 406
1564 石油
为什么不能直接用x和y? void dfs(int x,int y){//从m[x][y]出发遍历属于同一石油块的pocket visit[x][y]=1; for(int i=0;i<8;i++){/...
我要提问
2024年3月3日 09:56
回复 1
|
赞 0
|
浏览 473
1563 迷宫 const
为什么第六行必须要用const定义? //将结构体作为队列的元素 //广度优先搜索 #include<bits/stdc++.h> using namespace std; const int maxn=100+5; char M[maxn]...
我要提问
2024年3月1日 18:48
回复 3
|
赞 0
|
浏览 502
q.top()
priority_queue<int,vector<int>,greater<int>> q; int weight+=q.top(); 第二行语法有问题吗?
我要提问
2024年2月29日 22:44
回复 3
|
赞 0
|
浏览 753
1010 排序
为什么runtime error了呀? #include<bits/stdc++.h> using namespace std; int main(){ int n; ci...
我要提问
2024年2月29日 16:47
回复 2
|
赞 0
|
浏览 568
1097 负二进制
大佬们这个代码能运行但结果错误,能不能看看哪里错了? #include<bits/stdc++.h> using namespace std; int main(){ int x; strin...
学习交流
2024年2月27日 20:05
回复 2
|
赞 0
|
浏览 992
1380二进制串
#include<bits/stdc++.h> using namespace std; int main(){ unsigned int n; while(cin>>n){ string s; //定义字符串存储转换后的二进制串 int ...
我要提问
2024年2月27日 10:27
回复 1
|
赞 0
|
浏览 531
本科学校:无
目标学校:无
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!