map无脑过

子串计算

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

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>

using namespace std;

string str;
map<string, int> tree_map;

int main()
{
    cin >> str;

    for (int i = 0; i < str.size(); ++i)
        for (int j = i; j < str.size(); ++j)
        {
            string t = str.substr(i, j - i + 1);
            tree_map[t]++;
        }
    
    for (auto [u, v] : tree_map)
        if (v > 1)
            cout << u << ' ' << v << endl;
    return 0;
}

全部评论

相关推荐

今天 11:23
重庆邮电大学 C++
点赞 评论 收藏
分享
在评审的大师兄很完美:像这种一般就是部门不匹配 转移至其他部门然后挂掉 我就是这样被挂了
点赞 评论 收藏
分享
2 1 评论
分享
牛客网
牛客企业服务