主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
Śś
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
12
发帖
0
笔记
0
Ta的粉丝
10
关注数
0
粉丝数
10
获赞数
1
阅读数
5478
大整数乘法 题解:Python大法好
while True: try: n = input() a = input() b = ...
P1475
2024年3月26日 11:41
回复 0
|
赞 0
|
浏览 429
素数 题解:简单易懂
#include<iostream> #include<math.h> using namespace std; int Judge(int x) { if(x<2)return 0; ...
P1375
2024年3月26日 10:07
回复 0
|
赞 0
|
浏览 439
猴子报数 题解:循环链表
#include<iostream> using namespace std; struct Monkey { int Num; struct Monkey*Next; }; stru...
P1081
2024年3月23日 13:19
回复 0
|
赞 0
|
浏览 468
打印日期 题解:
#include<iostream> using namespace std; int days1[13] = {0,31,29,31,30,31,30,31,31,30,31,30,31};//闰年 int days2[13] = {0,31,28,31,30,31,3...
P1410
2024年3月23日 10:24
回复 0
|
赞 0
|
浏览 338
日期差值 题解:相对第一个日期当年第一天
/* 例如: 20190916 20240323 先计算第一个日期相对20190101的天数 再计算第二个日期相对20190101的天数 作差 +1 输出 //加减顺序可以调换 */ #include<iostream&g...
P1290
2024年3月23日 10:09
回复 0
|
赞 0
|
浏览 527
最简真分数 题解:
#include<iostream> #include<algorithm> using namespace std; int A[600+1]; int gcd(int a,int b) { if(a==0)r...
P1180
2024年3月22日 14:16
回复 0
|
赞 0
|
浏览 419
合并果子 题解:优先队列
#include<iostream> #include<queue> using namespace std; priority_queue<int,vector<int>,greater<int>> Q; int n,t...
P1544
2024年3月19日 11:24
回复 0
|
赞 0
|
浏览 471
合并果子 题解:栈+队列也可以
#include<iostream> #include<stack> #include<queue> #include<algorithm> using namespace std; int Fru[10000+1],n; sta...
P1544
2024年3月19日 10:53
回复 0
|
赞 0
|
浏览 439
括号匹配 题解:画两个栈演示一下可能会比较形象
#include<iostream> #include<stack> #include<cstring> using namespace std; stack<char> s1,s2; bool Judge(char a,c...
P1501
2024年3月18日 17:42
回复 0
|
赞 0
|
浏览 416
旋转方阵 题解:
//画图,按照路线编写代码 #include<iostream> using namespace std; int A[21][21]; void F(int n) { int k = n-1;  ...
P1216
2024年3月18日 10:42
回复 0
|
赞 1
|
浏览 532
序列翻转 题解:
#include<iostream>//#include<bits/stdc++.h> using namespace std;//标准命名空间 #define MAXSIZE 100000+10 int A[MAXSIZE...
P1519
2024年3月9日 10:45
回复 0
|
赞 0
|
浏览 480
删除最大最小数 题解:
#include<iostream> using namespace std; int main() { int n; cin>>n; in...
P1022
2024年3月5日 15:39
回复 0
|
赞 0
|
浏览 520
本科学校:贵州大学
目标学校:贵州大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!