s.insert(位置,“元素”)
`
include<bits/stdc++.h>
using namespace std;
int main(){
string s;
getline(cin,s);\需要处理空格时使用getline()
int n=s.length();
for(int i=n-4;i>=0;i--){\i的初位置
if(s[i]' '&&s[i+1]'i'&&s[i+2]'s'&&s[i+3]' '){\题目要求is前后必须是空格
s[i+1]='w';
s[i+2]='a';
s.insert(i+3,"s");\insert函数!!!
}
}
cout << s << endl;
return 0;
}
`
s.insert(i+3,"s")
·i+3位置
·"s"填充元素 必须是双引号!!!
输入为0时终止程序
题目描述
现在存在另一种斐波那契数:F(0)=7,F(1)=11,F(n)=F(n−1)+F(n−2)(n≥2)。
输入格式
每行输入包含一个整数 n(1≤n≤10
6
),表示斐波那契数的下标。当 n 为 0 时输入结束。
输出格式
针对每行输入的 n ,如果 F(n) 可以被 3 整除,请在单独一行输出 “yes”,否则输出 “no”。
输入输出样例
输入样例1
1
2
3
4
5
0
输出样例1
no
yes
no
no
no
题目要求当输入为0时停止输入并终止程序
可以使用while(cin >> n)来实现此功能
当cin >> n为0时表示假语句而跳出循环
`
include<bits/stdc++.h>
using namespace std;
int main(){
int n;
while(cin >> n) {
if (n == 0 ) {
return 0;
} else if (n % 4 == 2) {
cout << "yes" << endl;
} else {
cout << "no" << endl;
}
}
return 0;
}
`
结构体
(1)需要使用sort进行排序
题目描述
给出班里某门课程的成绩单,请你按成绩从高到低对成绩单排序输出,如果有相同分数则名字字典序小的在前。
输入格式
第一行为 n(0<n<20),表示班里的学生数目;
接下来的 n 行,每行为每个学生的名字和他的成绩, 中间用单个空格隔开。名字只包含字母且长度不超过 20,成绩为一个不大于 100 的非负整数。
输出
把成绩单按分数从高到低的顺序进行排序并输出,每行包含名字和分数两项,之间有一个空格。
输入样例
4
Kitty 80
Hanmeimei 90
Joey 92
Tim 28
输出样例
Joey 92
Hanmeimei 90
Kitty 80
Tim 28
`
include<bits/stdc++.h>
using namespace std;
struct stu{ \构建结构体
string name;
int score;
};
bool cmp(stu a,stu b){ \定义bool 函数
if(a.score==b.score){
return a.name<b.name; \名字按照升序排列
}
else{
return a.score>b.score; \成绩按照降序排列
}
};
int main(){
int n;
cin >> n;
stu a[25];
for(int i=0;i<n;i++){
cin >> a[i].name >> a[i].score;
}
sort(a,a+n,cmp); \sort 函数加cmp自定义排序方式
for(int i=0;i<n;i++){
cout << a[i].name << " " << a[i].score << endl;
}
return 0;
}
`
结构体
1.构建结构体
struct stu{
string name;
int score;
……
};
结束加分号!!!
2.定义结构体数组
stu a[20];
3.比较函数sort
sort(a,a+n;cmp);!!!
所谓cmp即自己构建比较函数,根据题目要求创建bool类型函数进行比较输入数据
4.构建bool类型函数
bool cmp(stu a,stu b){ \输入俩个结构体类型进行比较
if(a.score==b.score){
return a.name<b.name; \名字按照升序排列,即<(左小于右) !!!
}
else{
return a.score>b.score; \成绩按照降序排列,即>(左大于右) !!!
}
};
(2)不需要使用sort进行排序
题目描述
有N个学生,每个学生的数据包括学号、姓名、3门课的成绩,从键盘输入N个学生的数据,要求打印出3门课的总平均成绩,以及最高分的学生的数据(包括学号、姓名、3门课成绩)
输入
学生数量N占一行每个学生的学号、姓名、三科成绩占一行,空格分开。
输出
各门课的平均成绩 最高分的学生的数据(包括学号、姓名、3门课成绩)
样例输入
2
1 blue 90 80 70
b clan 80 70 60
样例输出
85 75 65
1 blue 90 80 70
`
include<bits/stdc++.h>
using namespace std;
struct stu{ \构建一个由五个元素组成的结构体
string id;
string name;
int a;
int b;
int c;
};
int main(){
int n;
cin >> n;
stu node[20];
int sum[20];
for(int i=0;i<n;i++){
cin >> node[i].id >> node[i].name >> node[i].a >> node[i].b >> node[i].c; \输入结构体的所有元素
}
double av1,av2,av3;
int sum1=0,sum2=0,sum3=0;
for(int i=0;i<n;i++){
sum1+=node[i].a;
sum2+=node[i].b;
sum3+=node[i].c;
sum[i]=node[i].a+node[i].b+node[i].c; \在计算各科总分的同时计算第i个同学的总分进而通过总分进行排序
}
av1=sum1/n;
av2=sum2/n;
av3=sum3/n;
int j;
j=0;
int max=sum[0];
for(int i=1;i<n;i++){
if(sum[i]>max){
max=sum[i];
j=i; \标记元素
}
}
cout << av1 << " " << av2 << " " << av3 << endl;
cout << node[j].id << " " << node[j].name << " " << node[j].a << " " << node[j].b << " " << node[j].c;
return 0;
}
`
使用map
1.https://codeforces.com/gym/102897/problem/J
`
include<bits/stdc++.h>
using namespace std;
map<char,int>mp;
int main() {
int t,n,i,j;
cin >> t;
while(t--) {
cin >> n;
int count = 0;
string s;
for (j = 0; j < n; j++) {
mp.clear();
cin >> s;
for (i = 0; i < s.size(); i++) {
if (s[i] != '.' && mp.count(s[i]) == 0) {
count++;
mp[s[i]]++;
}
}
}
cout << count << endl;
}
return 0;
}
该题也可以使用set容器
`
include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >> n;
while(n--){
int m;
cin >> m;
int count=0;
while(m--){
string a;
sets;
** cin >> a;**
** for(char c : a){**
** s.insert(c);**
** }**
** for(char d : s)**{
if(d!='.')
count++;
}
}
cout << count << endl;
}
}
map.clear()清空map保存的数据
map.count()只能返回1或0 1表示存在 0表示不存在
set可以保证存储的单元都是唯一的
对于多元素:从字符串a里面选择不重复的元素进set使用:for(char c:a){set.insert(c);}
从set里面找特定元素:for(char c:set){ }