题解 | #子串计算#

子串计算

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")

全部评论

相关推荐

hso_:哈哈哈哈哈哈我没offer一样在同一道题开喷了
投递深圳同为数码等公司10个岗位
点赞 评论 收藏
分享
服从性笔试吗,发这么多笔,现在还在发。
蟑螂恶霸zZ:傻 x 公司,发两次笔试,两次部门匹配挂,
投递金山WPS等公司10个岗位 >
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务