• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

编写一个小程序,从标准输入读入一系列string对象,寻找连续重复出现的单词。程序应该 ...

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

// test13.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include<iostream>
#include<vector>
#include<string>
#include<cstring>
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
vector<string> vec;
vector<int> strCnt;
vector<string> strName;
string str;
string temp;
int num = 0;
int max=0,flag=0;

while (cin>>str)
{
	vec.push_back(str);
	
	str.clear();
	
	if (getchar() == '\n')
	{
		break;
	}
}
for (auto it = vec.begin(); it != vec.end();it++)
{
	cout << *it <<  endl;
}


temp = *vec.begin();
for (auto it = vec.begin(); it != vec.end(); it++)
{
	if (it + 1 == vec.end())
	{
		num++;
		strName.push_back(temp);
		strCnt.push_back(num);
	}
    
	else if (temp == *it)
		num++;
	else
	{
		strName.push_back(temp);
		strCnt.push_back(num);
		temp = *it;
		num = 1;

	}
}

for (int i = 0; i < strName.size();i++)
{
	cout << strName[i] << ":" << strCnt[i] << endl;
}
max = *strCnt.begin();
for (int i=0; i<strCnt.size(); i++)
{
	if (max < strCnt[i])
	{
		max = strCnt[i];
		flag = i;
	}
}
cout << "连续出现的字符串的名称是:" << strName[flag] << " " <<"出现次数是:"<< strCnt[flag] << endl;
}

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
JS条形码插件--JsBarcode在小程序中使用发布时间:2022-07-18
下一篇:
小程序-wx:for发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap