主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
799
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
20
发帖
0
笔记
0
Ta的粉丝
130
关注数
0
粉丝数
130
获赞数
2
阅读数
10506
寻找二叉树的最后一层的最后一个结点 题解:
//寻找最后一层最后一个节点,层次遍历最后一个节点 #include<bits/stdc++.h> #include<queue> #include<iostream> using namespace std; typedef struct n...
P2010
2024年3月16日 08:51
回复 0
|
赞 0
|
浏览 440
Coincidence 题解:
#include <iostream> #include<string.h> using namespace std; int dp[105][105]; int main() { string a,b; &nbs...
P1293
2024年3月14日 21:20
回复 0
|
赞 0
|
浏览 463
上升序列 题解:
#include<iostream> #include<string.h> #include<algorithm> using namespace std; int main() { /* &nbs...
P2017
2024年3月13日 22:20
回复 0
|
赞 0
|
浏览 538
二叉树的后序序列 题解:
#include<iostream> using namespace std; typedef struct node{ char data; struct node *lchild,*rchild; }*Bit...
P4215
2024年3月12日 10:52
回复 0
|
赞 0
|
浏览 436
二叉树的先序序列 题解:利用递归来求
#include<bits/stdc++.h> using namespace std; //由先中,求后 /* 先序:A BEI DJ 中序:EBI A DJ 后序:EIB JD ...
P4355
2024年3月11日 23:00
回复 0
|
赞 1
|
浏览 498
括号的匹配 题解:
#include<bits/stdc++.h> using namespace std; void pd(string s); int main() { /* 1、使用stak栈模拟匹配括号,[] () {} ...
P1067
2024年3月9日 22:02
回复 0
|
赞 0
|
浏览 722
大整数加法 题解:
#include<bits/stdc++.h> using namespace std; string Add(string a, string b) { //让a的长度大于b if(a.size() <...
P1474
2024年3月9日 10:23
回复 0
|
赞 0
|
浏览 779
车厢的重组 题解:
#include <bits/stdc++.h> using namespace std; int main() { //本质就是一个冒泡排序 int a[1005]; int ...
P5132
2024年3月8日 23:47
回复 0
|
赞 0
|
浏览 452
幂次方 题解:
#include<bits/stdc++.h> using namespace std; #define M 233333 typedef long long ll; ll gow(ll a, ll b, ll mod) { //同模取余...
P1017
2024年3月8日 17:45
回复 0
|
赞 0
|
浏览 654
最大素因子 题解:
//直接暴力 #include<bits/stdc++.h> using namespace std; int isPrime(int x) { int flag=1;//1是素数 if(x == 1) f...
P1464
2024年3月8日 16:27
回复 0
|
赞 0
|
浏览 501
质因数个数 题解:
/* 用到2个数组 vector 定义,一个数组用来标记1-n中,是素数的数字;然后遍历,存放1-n素数 */ #include<bits/stdc++.h> using namespace std; vector<int>...
P1156
2024年3月8日 15:49
回复 0
|
赞 1
|
浏览 502
素数 题解:将素数放在数组,通过数组长度判断是否输出-1
#include<bits/stdc++.h> using namespace std; int pd(int x) { int flag=1;//1是素数 if(x==1) return 0;//0不是素数 ...
P1375
2024年3月8日 14:34
回复 0
|
赞 0
|
浏览 395
最简真分数 题解:使用 __gcd()函数
#include<bits/stdc++.h> using namespace std; int main() { int n; int str[605]; while(cin&...
P1180
2024年3月8日 11:06
回复 0
|
赞 0
|
浏览 519
奥运排序问题 题解:4种排名4种排序,用一个新数组标记要打印国家
#include<bits/stdc++.h> using namespace std; struct country{ int id;//国号 int gnum,mnum,pn;//金牌数,奖牌数,人口  ...
P1310
2024年3月8日 00:02
回复 0
|
赞 0
|
浏览 764
统计单词 题解:
#include <bits/stdc++.h> using namespace std; char s[105]; int main() { /* 思想: 1、利用一个标识符 来...
P1394
2024年3月6日 16:55
回复 0
|
赞 0
|
浏览 336
统计字符 题解:
#include <bits/stdc++.h> using namespace std; char s[10]; char t[100]; int main() { while (gets(s)!=NULL) &nb...
P1320
2024年3月6日 15:17
回复 0
|
赞 0
|
浏览 527
旋转矩阵 - 北航 题解:
#include <bits/stdc++.h> using namespace std; void xz(int n,int a[15][15],int b[15][15]); void Aprint(int a[15][15],int n); int pd(in...
P1377
2024年3月5日 21:53
回复 0
|
赞 0
|
浏览 450
杨辉三角形 - 西北工业大学 题解:
#include <bits/stdc++.h> using namespace std; int main() { int n,i,j; int a[105][105]={0};//75%的情况,数组开小了...
P1392
2024年3月5日 20:51
回复 0
|
赞 0
|
浏览 551
杨辉三角形 题解:
#include <bits/stdc++.h> using namespace std; int main() { int n,i,j; int a[30][30]; whil...
P1062
2024年3月5日 17:18
回复 0
|
赞 0
|
浏览 557
矩阵翻转 题解:
#include <bits/stdc++.h> using namespace std; int a[105][105]; int b[105][105]; int main() { int n; scan...
P1134
2024年3月5日 16:47
回复 0
|
赞 0
|
浏览 422
本科学校:cs
目标学校:湖南中医药大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!