题解 | #子串计算#

子串计算

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

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

int main() {
    string line;
    while (cin >> line) { // 注意 while 处理多个 case
        // cout << a + b << endl;
        map<string, int> strMap;
        for (int i = 0; i <= line.size() - 1; i++) {//起点
            for (int j = 1; j <= line.size() - i; j++) {//子串长度
                string str = line.substr(i, j);
                strMap[str]++;
            }
        }
        for(auto it=strMap.begin();it!=strMap.end();it++){
if(it->second>=2) cout<<it->first<<' '<<it->second<<endl;
        }
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

不愿透露姓名的神秘牛友
11-21 17:16
科大讯飞 算法工程师 28.0k*14.0, 百分之三十是绩效,惯例只发0.9
点赞 评论 收藏
分享
10-17 12:16
同济大学 Java
7182oat:快快放弃了然后发给我,然后让我也泡他七天最后再拒掉,狠狠羞辱他一把😋
点赞 评论 收藏
分享
躺尸修仙中:因为很多92的也去卷中小厂,反正投递简历不要钱,面试不要钱,时间冲突就推,不冲突就面试积累经验
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务