题解 | #子串计算#

子串计算

https://www.nowcoder.com/practice/bcad754c91a54994be31a239996e7c11

#include<iostream>
#include<map>
#include<string>
using namespace std;

map<string,int>mp;

int main(void)
{
	string str;
	cin >> str;
	int len = str.size();
	for(int i = 0;i < len;i++)
	{
		for(int j = 1;j <= len - i;j++)
		{
			string t = str.substr(i,j);
			mp[t]++;	
		}	
	}	
	for(auto s : mp)
	{
		if(s.second > 1)cout << s.first << " " <<s.second << endl;
	}
	return 0;
}


全部评论

相关推荐

jack_miller:杜:你不用我那你就用我的美赞臣
点赞 评论 收藏
分享
像好涩一样好学:这公司我也拿过 基本明确周六加班 工资还凑活 另外下次镜头往上点儿
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务