aaaawei
aaaawei
全部文章
题解
归档
标签
去牛客网
登录
/
注册
aaaawei的博客
一条奋斗考研的咸鱼
全部文章
/ 题解
(共21篇)
getline对一行的输入
include include include using namespace std;int main(){ string str; while(getline(cin,str)){//起始行 if(str=="ENDOFINPUT") break;...
C++
2021-01-11
0
512
getline输入一行不然到了空格就结束了
include include include using namespace std;int main(){ string str; while(getline(cin,str)){//循环输入一行 for(int i=0;i<str.size();++i){ ...
C++
2021-01-11
1
625
getline函数是获取一行字符串 不会遇到空格就停止!
getline函数有返回值 可以作为循环输入的判断条件#include<iostream>#include<cstdio>#include<string>using namespace std;</string></cstdio><...
C++
2021-01-11
0
1061
题目简单 不过输出格式太折磨人了啊 最后格式不对纠正了一个小时 心态崩了
小心输出格式问题 借用两个数组 输出格式的逗号和只输出重复的数字!#include<iostream>#include<cstdio>#include<string.h>using namespace std;char a[100];char b[100];in...
C++
2021-01-08
0
689
可以先排序 从小到大排序然后取第一组结构体
先定义两个int的结构体 然后对结构体排序 自定义排序算法 从小到大排序最后取第一组结构体就是最小的数这种方法适合输入很多组数据时候的代码 排序一次能得到从小到大的结构体#include<iostream>#include<cstdio>#include<alg...
C++
2021-01-08
6
678
二分查找 先排序再查找 时间复杂度为O(nlog2n+mlog2n)
C++代码如下#include<iostream>#include<cstdio>#include<algorithm>//排序算法的头文件using namespace std;int a[100];int b[100];bool binary(int n,in...
2021-01-08
0
0
自定义排序 而且要循环输入
include include include include<string.h> using namespace std;typedef struct Student { char name[50]; int score; int n;}stu;bool compar...
2021-01-08
0
569
easy
include include using namespace std;int main() { int n, steep; while (scanf("%d\n",&n)!=EOF) { if(n==0) break; st...
2021-01-07
0
397
预处理就简单些
include include include <string.h> using namespace std;int a[27]={0,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,4,1,2,3,1,2,3,4};//预处理char str[8][4]={...
2021-01-07
4
715
so easy
include include using namespace std; int main(){ bool a[10000]={false};//初始化为false int L,M,x,y,sum=0; scanf("%d %d",&L,&M); for(in...
2021-01-06
2
431
首页
上一页
1
2
3
下一页
末页