主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
红毛舒肤佳
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
16
发帖
0
笔记
0
Ta的粉丝
76
关注数
0
粉丝数
76
获赞数
3
阅读数
9607
字符串排序2 题解:c++借鉴某位题解,并加入了自己理解注释
#include <bits/stdc++.h> using namespace std; bool cmp(char a,char b){ if(a>='a'&&a<='z'&&b>='a'&&b...
P1255
2024年3月10日 22:03
回复 1
|
赞 1
|
浏览 1.2k
日期差值 题解:C++,注释清晰,步骤较多
#include <bits/stdc++.h> using namespace std; struct date{ int year,month,day; }; int mon[13]={0, 31,28,31,30,31,30,31,31...
P1290
2024年3月20日 18:12
回复 0
|
赞 0
|
浏览 571
日期 题解:C++
#include <bits/stdc++.h> using namespace std; int mon[13]={0, 31,28,31,30,31,30,31,31,30,31,30,31 }; int main() { int mon...
P1011
2024年3月20日 17:24
回复 0
|
赞 0
|
浏览 501
剩下的树 题解:数组
#include <bits/stdc++.h> using namespace std; int main(){ int x,m; while(cin>>x>>m){ int L[10005]={0};//...
P1175
2024年3月17日 21:30
回复 0
|
赞 0
|
浏览 416
二叉搜索树 题解:C++
#include <bits/stdc++.h> using namespace std; typedef struct node{ char data; struct node *lchild,*rchild; }*BiTree,BiTnode; ...
P1317
2024年3月17日 20:07
回复 0
|
赞 0
|
浏览 701
二叉树2 题解:递归C++
#include <bits/stdc++.h> using namespace std; int fun(int m,int n){ if(m>n) return 0;//递归结束条件 else return fun(2*m+1,n)+fun(2...
P1264
2024年3月16日 20:07
回复 0
|
赞 0
|
浏览 632
统计同成绩学生人数 题解:hash
#include <bits/stdc++.h> using namespace std; int num[105]={0};//记录人数成绩分0-100分 int main(){ int n; while(cin>>n){ ...
P1329
2024年3月16日 17:51
回复 0
|
赞 0
|
浏览 438
质因数个数 题解:C++
#include <bits/stdc++.h> using namespace std; const int maxn=1e6+5; int prim[maxn];//存素数 bool p[maxn]={0};//标记 int num=1;//从prim【1】开始存...
P1156
2024年3月13日 18:31
回复 0
|
赞 0
|
浏览 575
素数 题解:C++
#include <bits/stdc++.h> using namespace std; int Isprime(int a){ for(int i=2;i<=sqrt(a);i++){ if(a%i==0) return 0; ...
P1375
2024年3月13日 17:23
回复 0
|
赞 0
|
浏览 378
斐波那契数列 题解:C++
#include <bits/stdc++.h> using namespace std; long long f[75]; int main(){//Double(双精度浮点数)使用64位(8字节)来存储一个浮点数 //Long Long(长整型)通常指的是6...
P1111
2024年3月12日 21:28
回复 0
|
赞 0
|
浏览 529
____
P1478
2024年3月11日 20:14
回复 0
|
赞 0
|
浏览 601
查找学生信息 题解:map函数
#include <bits/stdc++.h> using namespace std; int main(){ int n,m; while(cin>>n>>m){ int num; map...
P1177
2024年3月11日 17:40
回复 0
|
赞 1
|
浏览 628
整数奇偶排序 题解:C++
#include <bits/stdc++.h> using namespace std; bool cmp(int a,int b){ if(a%2==1&&b%2==1) return a>b; else if...
P1248
2024年3月10日 20:36
回复 0
|
赞 0
|
浏览 500
成绩排序 题解:数据率百分66时,检查while(cin>>n)
#include <bits/stdc++.h> using namespace std; struct student{ string name; int score; }; bool Cmpdesc(student a,student b){//...
P1151
2024年3月10日 17:10
回复 0
|
赞 0
|
浏览 525
删除字符串2 题解:通用
#include <bits/stdc++.h> using namespace std; char f[105]={0};//标记主串的位置 int main(){ string s,t,s_lower; getline(cin,s); ...
P1027
2024年3月9日 22:29
回复 0
|
赞 1
|
浏览 877
字母统计 题解:
#include <bits/stdc++.h> using namespace std; int main(){ string str; cin>>str; int a[26...
P1292
2024年3月9日 21:14
回复 0
|
赞 0
|
浏览 553
本科学校:河南大学
目标学校:河南大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!