主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
Mihara
用自己的双手创造未来。
关注
发消息
文章
0
题解
11
发帖
0
笔记
0
Ta的粉丝
223
关注数
1
粉丝数
223
获赞数
14
阅读数
55118
set或map
法1. STL中的unordered_set容器类(也可以用set)非常适合解决这个问题。 对于unordered_set: 其查找操作和插入操作的时间复杂度都是O(1) #include <iostream> #include <set> ...
P1477
2022年6月12日 16:28
回复 1
|
赞 1
|
浏览 5.2k
大整数看作字符串
自定义排序即可: 数字位数多的一定大于位数少的; 位数相同,从头到尾比较各个数字位、直到找到一个二者间更大的即可。 #include <string> #include <algorithm> #include <iostre...
P1412
2022年6月12日 15:40
回复 1
|
赞 1
|
浏览 5.2k
先建立链表、再合并
关键点: 1.尾插法建立单链表 2.用两个指针去合并 #include <iostream> using namespace std; struct ListNode { int val; struct ListNod...
P1025
2022年7月1日 11:06
回复 0
|
赞 2
|
浏览 5.4k
用set容器
注意到题中描述: 1.同样大小算一样大 2.找第k小 STL中的set默认以递增序存储、非常适合这个题目。 需要注意的地方: 访问set要使用迭代器。 // 思路: 利用集合的自动有序 #include <set> #include <i...
P1383
2022年6月13日 19:30
回复 1
|
赞 3
|
浏览 5.8k
直接sort
#include <iostream> #include <vector> 注意处理没有元素就输出-1的情况。 #include <algorithm> using namespace std; int main() { ...
P1400
2022年6月12日 15:22
回复 0
|
赞 1
|
浏览 4.2k
练习一下冒泡排序
#include <cstdio> #include <cstring> int main() { char s[20]; int cnt = 0; &nbs...
P1254
2022年6月9日 22:35
回复 0
|
赞 1
|
浏览 4.8k
多级排序思想
我自定义奇偶性的排序规则: 两个数a、b的奇偶性无非3种情况 1)同为奇数 ,降序即可 2)同为偶数 ,升序即可 3)一奇一偶,奇在偶前 #include <iostream> #include <algorithm> ...
P1248
2022年6月9日 22:12
回复 0
|
赞 1
|
浏览 4.2k
遍历统计
// 案例可能有多组,每个案例输入为一行字符串。 // 对每个案例按A-Z的顺序输出其中大写字母出现的次数。 #include <iostream> #include <string> using namespace std;...
P1292
2022年6月7日 21:51
回复 0
|
赞 1
|
浏览 5.4k
先考虑分,再考虑时
// 时间的计算 // 假设当前时间为13:15,第一行输入作物种类数n,从第二行开始输入n 种作物成熟需要的时间,格式为Hour:Minute。 // 依次输出n 种作物成熟时间,每行输出一个 #include <cstdio> int...
P1053
2022年6月7日 20:56
回复 0
|
赞 1
|
浏览 5.0k
求一年内第几天的逆过程
// C++ #include <cstdio> int main() { int y, n; int f[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30...
P1410
2022年6月7日 19:56
回复 0
|
赞 1
|
浏览 4.9k
用二维数组
// 计算关键: v[i][j] = v[i - 1][j] + v[i - 1][j - 1]; #include <iostream> #include <vector> using namespace std; ...
P1392
2022年6月7日 13:26
回复 0
|
赞 1
|
浏览 5.0k
本科学校:ouc
目标学校:ecnu
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!