抱歉,您的浏览器无法访问本站
本页面需要浏览器支持(启用)JavaScript
了解详情 >

细节很多,写注释里边了。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int pos = -1;//这是第一次出现的位置
int count(string s, string word){
//基本思路:遇到空格就匹配
int c = 0;//计数变量
string str;
for(int i = 0;i < s.length();i ++){
if(s[i] == ' '){//匹配到空格
if(word == str){
++ c;
if(c == 1) pos = i - word.length();//很重要哦,c == 1代表是第一次匹配,i - word.length()是他在字符串中第一次出现的位置
}
str = "";//清空,或者str.clean()
}
else str += s[i];//否则就增加
}
return c;
}
int main(){
string s, word;
cin >> word;
s = '\n';//很重要!cin和getline在一起使用会导致第二个getline读取换行
getline(cin, s);//给他一个换行读掉
getline(cin, s);//正常阅读
/*
其实你也可以这么写:
getline(cin, word);
getline(cin, s);
*/
//大小写转换
transform(word.begin(),word.end(),word.begin(),::tolower);
transform(s.begin(),s.end(),s.begin(),::tolower);
int num = count(s,word);
if(num == 0)cout << -1;
else cout << num;
if(pos != -1)cout << ' ' << pos << endl;
}

评论