miner_song
miner_song
全部文章
分类
归档
标签
去牛客网
登录
/
注册
miner_song的博客
全部文章
(共7篇)
题解 | #字符串分隔#
主要是运用STL中的字符串来进行操作 #include <bits/stdc++.h> using namespace std; int main() { string s,s1; int l; int n...
C++
字符串
2022-09-06
1
0
题解 | #明明的随机数#
重点在于排序,但是我们可以利用c++中自带的sort排序,它就是基于快排的。 我的算法思路是先把数据读入vector中,然后利用sort排序将容器内元素进行排序。之后再去掉相同的元素就可以了,重复的元素即为当前元素和前一个元素相同,则这个元素就是重复元素,我们利用a.erase函数去掉这个元素...
C++
数组
2022-09-06
1
222
题解 | #字符串最后一个单词的长度#
#include <bits/stdc++.h> using namespace std; int main() { string s,r; getline(cin,s); &n...
C++
字符串
2022-09-02
1
0
题解 | #二叉树#
#include <bits/stdc++.h> using namespace std; int fun(int m,int n) { int r; if(m>n) &n...
C++
二叉树
递归
分治
2022-08-02
1
258
题解 | #简单密码#
#include <bits/stdc++.h> using namespace std; int main() { string s1,s2,s3; //vector<string&...
C++
C
字符串
2022-07-17
1
283
题解 | #成绩排序#
#include<bits/stdc++.h> using namespace std; struct student{ int num; string name; ...
模拟
C++
C
2022-07-10
1
0
题解 | #日期累加#
#include<bits/stdc++.h> using namespace std; bool leap_judge(int a) { return (((a%4==0)&&(a%100!=0))||a%400==...
C++
模拟
2022-07-07
1
0