主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
Yangyylj
贪心一点点愿今年心想事成一切顺遂!!
关注
发消息
文章
0
题解
8
发帖
0
笔记
0
Ta的粉丝
216
关注数
0
粉丝数
216
获赞数
20
阅读数
66966
字符串函数的使用:reverse() 翻转;substr()获取子串;replace()进行字符串替换
s.substr(p, n) 返回从s的下标p开始的n个字符组成的字符串 s.replace(p0, len0, s2, pos, len) 删除p0开始的len0个字符,然后在p0处插入串s2中从pos开始的len个字符 #include<bit...
P1387
2021年5月19日 22:22
回复 1
|
赞 4
|
浏览 8.7k
借鉴题解里的大佬的代码;自己加了一些注释方便读懂;留备复习用
#include<bits/stdc++.h> using namespace std; //加油站 struct Station{ double price;//单位油价 double dist;//该加油站距离杭州距离 }; //最后输出打印 s...
P1347
2021年5月20日 15:27
回复 1
|
赞 2
|
浏览 8.6k
大整数; 将a拆分成若干个质因子之积,比较阶乘的 2 ~ n 中包含多少个对应的质因子,可得出来最多可以整除 a 的多少次方
#include<bits/stdc++.h> using namespace std; //得到数n的质因子及其个数 void getPrime(vector<int>& factors, int n){ for(int i=2; i*i&l...
P1284
2021年5月25日 21:00
回复 0
|
赞 5
|
浏览 8.9k
使用Map容器;关键字key与键值value一一对应;使用迭代器进行循环
#include<bits/stdc++.h> using namespace std; string str; int main(){ while(cin >> str){ //使用map容器;相当于字典:一个关键字对应一个值 //关...
P1249
2021年5月7日 11:12
回复 0
|
赞 4
|
浏览 7.4k
旋转矩阵;寻找经过变换后的坐标关系;注意多组输入
#include<bits/stdc++.h> using namespace std; //n行数;m列数 /* 顺时针90° (i,j)->(j, n-1-i) */ /* 沿纵向对称轴翻折:(i, j)->(i, m...
P1221
2021年4月7日 21:31
回复 1
|
赞 2
|
浏览 9.1k
字符匹配简略写法
#include<bits/stdc++.h> using namespace std; string in[1000]; //因不区分大小写,故全部转换为小写 void lowerCase(string& str){ for(int i=0; i&...
P1378
2021年4月25日 20:28
回复 0
|
赞 2
|
浏览 9.5k
日期累加;注意处理经过了很多个年
#include<bits/stdc++.h> using namespace std; int tab[2][13] = { {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, {0, 31, ...
P1446
2021年4月8日 15:58
回复 0
|
赞 1
|
浏览 7.3k
计算这两个日期分别与0000.00.00的日期差值再作差;使用scanf格式化输入内容
#include<bits/stdc++.h> using namespace std; int tab[2][13] = { {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, {0, 31, ...
P1290
2021年4月8日 13:59
回复 0
|
赞 0
|
浏览 7.6k
本科学校:海南大学
目标学校:无
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!