C++-用c++寻找连续重复出现的单词

发布于 2017-04-12 01:55:33 字数 1005 浏览 1238 评论 1

题目:
编写一个小程序,从标准输入读入一系列string对象,寻找连续重复出现的单词,程序应该找出满足以下条件的单词的输入位置:该单词的后面紧跟着再次出现自己本身,跟 踪重复次数量多的单词及其重复次数.输出重复次数的最大值,
例如.如果输入是:
how now now now brown cow cow
则输出表明now这个单词出现了三次

以下是我写的程序,请问为什么不行?

#include<iostream>
#include<string>
#include<vector>
using namespace std;
using std::vector;
int main()
{
vector<string> a;
string word;
while(cin>>word)
a.push_back(word);
auto beg=a.begin();
int max=0;//用于存放最大重复次数
string str;//用于存放重复最多的单词
int n=1;//临时统计重复次数
while(beg!=a.end())
{
if(beg==(++beg))//这里用*beg==*(++beg)可以吗?
{++n;
if(n>max){max=n;str=*beg;}
}
else n=1;
}
if(max=0)
cout<<"没有能重复的"<<endl;
else
cout<<str<<"重复"<<max<<"次"<<endl;
return 0;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泛泛之交 2017-09-10 19:22:34

根据你的代码做了如下修改:
#include<iostream>
#include<string>
#include<vector>
using namespace std;
using std::vector;
int main()
{
vector<string> a;
vector<string>::iterator beg;
string word;
string flag("haha");
cin>>word;
while(word.compare(flag))
{
a.push_back(word);
cin>>word;
}

beg=a.begin();
int max=0;//用于存放最大重复次数
string str;//用于存放重复最多的单词
int n=1;//临时统计重复次数
int t;
for(int i=0;i<a.size()-1;i++)
{
t=i+1;
if(a[i]==a[t])
{
n++;
if(n>max)
{
max=n;
str=(string)a[i];
}
}
else
{
n=1;
}

}
if(max==0)
cout<<"没有能重复的"<<endl;
else
cout<<str<<"重复"<<max<<"次"<<endl;
return 0;
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文