主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
morning
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
6
发帖
0
笔记
0
Ta的粉丝
18
关注数
0
粉丝数
18
获赞数
0
阅读数
2008
最大连续子序列 题解:动态规划
#include <iostream> using namespace std; typedef struct node{ int st,ed; }p;//最大子序列的初始值和末尾值 int main() { &n...
P1334
2024年9月17日 17:37
回复 0
|
赞 0
|
浏览 315
求S(n) 题解:longlongint防止溢出
#include <iostream> using namespace std; int main() { long long int n; while(cin>>n){ &nbs...
P1500
2024年8月15日 21:34
回复 0
|
赞 0
|
浏览 285
击鼓传花 题解:循环链表解决
#include <bits/stdc++.h> using namespace std; typedef struct Node{ int num; struct Node* next; }; int...
P1018
2024年8月15日 21:03
回复 0
|
赞 0
|
浏览 307
查找第K小数 题解:使用Set和iterator解决
#include <bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n){ &n...
P1383
2024年8月13日 15:59
回复 0
|
赞 0
|
浏览 334
排序 题解:运用自带sort函数+定义比较方法cmp解决
#include<bits/stdc++.h> using namespace std; bool cmp(int a,int b){ if(a%2 != b%2)//不同奇偶 retu...
P1010
2024年8月9日 21:57
回复 0
|
赞 0
|
浏览 373
杨辉三角形 - 西北工业大学 题解:
使用递归的方法求解,先找到出口,每次递归就是到下一行,中间处理每一行的数据 #include<bits/stdc++.h> using namespace std; //n层 void f(int n,int a[100][100],int i){ i...
P1392
2024年7月4日 09:33
回复 0
|
赞 0
|
浏览 394
本科学校:吉首大学
目标学校:深圳大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!