主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
James
这个人很懒,什么都没有写...
关注
发消息
文章
1
题解
81
发帖
0
笔记
0
Ta的粉丝
344
关注数
0
粉丝数
344
获赞数
28
阅读数
698048
注意递归边界
#include <iostream> #include <string.h> using namespace std; typedef struct node{ char data; &...
P1561
2021年2月1日 16:41
回复 0
|
赞 0
|
浏览 8.8k
先重建树 然后两个方向递归
#include<iostream> #include<queue> #include<string> #include<string.h> using namespace std; typedef struct node{ &nbs...
P1551
2021年2月1日 14:43
回复 0
|
赞 0
|
浏览 9.0k
根据先序和中序建二叉树 注意递归边界
#include<iostream> #include<queue> #include<string> #include<string.h> using namespace std; typedef struct node{ &nbs...
P1401
2021年2月1日 14:09
回复 0
|
赞 0
|
浏览 8.3k
简单BFS
#include<iostream> #include<queue> using namespace std; int m,n; queue <int> q; int bfs(int s){ in...
P1264
2021年2月1日 13:27
回复 0
|
赞 0
|
浏览 7.3k
完全二叉树的LCA简洁代码
#include<iostream> using namespace std; int main(){ int x,y; while(scanf("%d %d",&x,&...
P1233
2021年2月1日 13:17
回复 0
|
赞 0
|
浏览 9.6k
runtime error问题是为什么
#include <iostream> #include <string.h> using namespace std; typedef struct node{ char data; &nbs...
P1161
2021年2月1日 12:43
回复 0
|
赞 1
|
浏览 8.9k
WPL结论
#include <iostream> #include <stdio.h> #include <string> #include <queue> #include <map> #include <iterator&g...
P1562
2021年1月31日 20:32
回复 0
|
赞 0
|
浏览 8.6k
优先队列priority_queue模拟堆
#include <iostream> #include <stack> #include <queue> using namespace std; struct node{ int x; }; p...
P1544
2021年1月31日 18:35
回复 0
|
赞 0
|
浏览 7.9k
两个方向括号匹配 用vis记录输出符号
#include <iostream> #include <stack> #include <string> #include <string.h> using namespace std; char s[101]; stack ...
P1296
2021年1月31日 18:19
回复 0
|
赞 0
|
浏览 7.0k
带有优先级的括号匹配
#include <iostream> #include <stack> #include <string> using namespace std; //{[(<>)]} //a是当前元素 b是上一个元素 ...
P1067
2021年1月31日 17:45
回复 0
|
赞 0
|
浏览 10.2k
简单模拟
#include <iostream> #include <stack> #include <string> using namespace std; stack <char> st; string s; int main(){ ...
P1501
2021年1月31日 16:58
回复 0
|
赞 0
|
浏览 8.3k
大整数加法vector简洁代码
#include<iostream> #include<vector> #include<string> #include<algorithm> #include<cstdio> #include<string.h&g...
P1474
2021年1月30日 13:22
回复 0
|
赞 0
|
浏览 8.4k
质因数分解
#include<iostream> #include<math.h> using namespace std; /* 思路: 将n!对于 2 3 4 .... n质因数分...
P1284
2021年1月29日 23:26
回复 0
|
赞 1
|
浏览 9.5k
快速幂模运算模板
#include<iostream> using namespace std; #define ll long long //快速幂 /* 例如a^7 7=111=2^2*1+2^1*1+2^0*1=4+2+...
P1017
2021年1月29日 20:29
回复 0
|
赞 2
|
浏览 10.5k
质因子分解
#include <iostream> #include <math.h> #include <stdio.h> using namespace std; int main(){ int n; &nb...
P1156
2021年1月29日 17:22
回复 0
|
赞 0
|
浏览 10.5k
素数两种筛选方法
#include <iostream> #include <math.h> #include <algorithm> using namespace std; int a,b; //线性筛法 bool isprime(int x){  ...
P1375
2021年1月29日 14:27
回复 0
|
赞 0
|
浏览 10.2k
认真读题 必须用longlong
#include <iostream> #include <math.h> #include <algorithm> using namespace std; int n; int x; long long f[101]; int ...
P1111
2021年1月29日 12:03
回复 0
|
赞 0
|
浏览 8.6k
GCD和LCM
#include <bits/stdc++.h> using namespace std; /* 最大公约数GCD 辗转相除法 最小公倍数LCM 根据公式 LCM(a,b)=a*b/GCD(a,b); */ i...
P1041
2021年1月27日 20:15
回复 0
|
赞 0
|
浏览 8.9k
GCD
#include <bits/stdc++.h> using namespace std; /* 最大公约数 GCD 辗转相除法 注意必须a大b小 */ int gcd(int a,int b){ &n...
P1180
2021年1月27日 20:05
回复 0
|
赞 0
|
浏览 8.1k
同余模定理
#include <bits/stdc++.h> using namespace std; /* 同模余定理 (a+b)%c=(a%c+b%c)%c; (a-b)%c=(a%c-b%c)%c; (a*b)%c=(a%c*b%c)%c; 其中*和%运算级相同...
P1500
2021年1月27日 19:16
回复 0
|
赞 0
|
浏览 8.4k
1
2
3
4
5
本科学校:山东财经大学
目标学校:吉林大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!