码迷,mamicode.com
首页 > 其他好文 > 详细

用迭代器判断字符串相等

时间:2018-08-12 13:59:29      阅读:300      评论:0      收藏:0      [点我收藏+]

标签:单词   判断   vector   end   namespace   ==   判断字符串   std   space   

写的有点乱  但是重点是你比较这两个字符串是不是相等的时侯  不能用if(*beg == *(++beg))   这样会一直比较两个相同的字符串    

 

 

#include<iostream>
#include<string>
#include<vector>
using namespace std;
int main() {

/*找重复单词*/
vector<string>str;
string strr;
while (cin >> strr) {
str.push_back(strr);
}
auto beg = str.begin();
int i = 1 , t=0 , max =1 , maxt=0;
int flag = 0;
while (beg != str.end()-1)
{
string ex1 = *beg;
string ex = *(++beg);
if (ex1 == ex)
{
++i;
++t;
flag = 1;
if (max<i)
{
max = i;
maxt = t;
}
}
else
{
if (max<i)
{
max = i;
maxt = t;
}
i = 1;
++t;
}
}
if (flag == 0)
{
cout << "same";
}
else {
cout << str[maxt] << " " << max;

用迭代器判断字符串相等

标签:单词   判断   vector   end   namespace   ==   判断字符串   std   space   

原文地址:https://www.cnblogs.com/mikekuok/p/9462646.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!