题解 | #查找两个字符串a,b中的最长公共子串#

查找两个字符串a,b中的最长公共子串

https://www.nowcoder.com/practice/181a1a71c7574266ad07f9739f791506

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

int main() {
    string str1;
    string str2;
    cin >> str1 >> str2;
    if (str1.size() > str2.size())   //str1是短的字串,str2是长的字串
    {
        string temp = str1;
        str1 = str2;
        str2 = temp;
    }

    string comm_str;  //提取出的公共字符chuan
    int maxstr = 0;   //最大字符串长度

    for (int i = 0;i < str1.size();i++)
    {
        for (int j = 1;j <= str1.size() - i;j++)
        {
            string newstr = str1.substr(i,j);
            if (str2.find(newstr) != string::npos)
            {
                if (newstr.size() > maxstr)
                {
                    comm_str = newstr;
                    maxstr = newstr.size();
                }
            }
        }
    }

    cout << comm_str;


}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

喜欢吃蛋糕仰泳鲈鱼是我的神:字节可以找个hr 给你挂了,再放池子捞
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务