Huster水仙
Huster水仙
全部文章
分类
题解(112)
归档
标签
去牛客网
登录
/
注册
Huster水仙的博客
水仙不开花?你装蒜呢!
TA的专栏
16篇文章
0人订阅
algorithm
16篇文章
911人学习
全部文章
(共120篇)
题解 | #成绩排序#
//用sort排序,构造比较函数(返回值为true时,参数1放到参数2的前面) #include<iostream> #include<algorithm> using namespace std; struct student{ int ...
C++
2023-01-02
0
323
题解 | #Grading#
#include<iostream> #include<cmath> using namespace std; int main(){ int p,t,g1,g2,g3,gj; double score; ...
C++
2023-01-02
0
328
题解 | #手机键盘#
//关键在于:同一按键的字母之差等于对应按键次数之差 #include<bits/stdc++.h> using namespace std; int key[26]={1,2,3, 1,2,3, 1,2,3, 1,2,3 ,1,2,3, 1,2,3,4, 1,2,3...
C++
2023-01-02
0
359
题解 | #日期累加#
//直接按月继续累计即可 #include <iostream> using namespace std; int main() { int year,month,day,run; int m,number; ...
C++
2023-01-01
0
382
题解 | #日期差值#
//繁琐但直接的思路 #include<iostream> using namespace std; int yy[2][12]={ ...
C++
2023-01-01
0
434
题解 | #今年的第几天#
#include <iostream> using namespace std; int main() { int year,month,day,run; int yy[2][12]={ {31,28,31,30,31,30,31,31,30,31,30...
2023-01-01
0
397
题解 | #字符串连接#
#include <iostream> using namespace std; int main() { char a[100], b[100]; while (cin >> a >> b) { int i=0,j=0; ...
2022-12-31
0
257
题解 | #IP地址#
#include <iostream> #include <bits/stdc++.h> #include <cstring> using namespace std; int main() { char s[100]; int num=0; ...
2022-12-31
6
271
题解 | #矩阵转置#
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; int a[100][100]; for(int i=0;i<n;i++){ ...
2022-12-31
0
345
题解 | #统计单词#
#include <bits/stdc++.h> using namespace std; int main() { int count=0; char s; while(1){ s=getchar(); //注意空格不会被cin入字符s ...
2022-12-31
0
259
首页
上一页
3
4
5
6
7
8
9
10
11
12
下一页
末页